From 1a6f5e7c4f28bb7a3ab6573ebce6987bf24f5723 Mon Sep 17 00:00:00 2001 From: yumumu Date: Wed, 15 Mar 2017 15:28:36 +0800 Subject: [PATCH] fix little question of indent --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 00a910a..6a1c7d3 100644 --- a/README.md +++ b/README.md @@ -938,7 +938,7 @@ In this case, instead of allocating the object in the init method one could opt ```objective-c - (NSDateFormatter *)dateFormatter { if (!_dateFormatter) { - _dateFormatter = [[NSDateFormatter alloc] init]; + _dateFormatter = [[NSDateFormatter alloc] init]; NSLocale *enUSPOSIXLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"]; [dateFormatter setLocale:enUSPOSIXLocale]; [dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSSSS"];