From 3e687f1a8ccb1cd0d52a966005551d528ca141df Mon Sep 17 00:00:00 2001 From: Boris Verkhovskiy Date: Sat, 6 Apr 2024 08:33:50 -0700 Subject: Remove leading and trailing empty lines in code blocks --- objective-c.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'objective-c.html.markdown') diff --git a/objective-c.html.markdown b/objective-c.html.markdown index c179c295..b5e143c4 100644 --- a/objective-c.html.markdown +++ b/objective-c.html.markdown @@ -804,8 +804,8 @@ MyClass *arcMyClass = [[MyClass alloc] init]; __strong NSString *strongString; // Default. Variable is retained in memory until it leaves it's scope __weak NSSet *weakSet; // Weak reference to existing object. When existing object is released, weakSet is set to nil __unsafe_unretained NSArray *unsafeArray; // Like __weak, but unsafeArray not set to nil when existing object is released - ``` + ## Further Reading [Wikipedia Objective-C](http://en.wikipedia.org/wiki/Objective-C) -- cgit v1.2.3