Просмотр исходного кода

Silence new weird documentation warning…

Tanner Bennett лет назад: 5
Родитель
Сommit
c28952f6e9

+ 1 - 1
Classes/Utility/Categories/NSDictionary+ObjcRuntime.h

@@ -13,7 +13,7 @@
 @interface NSDictionary (ObjcRuntime)
 
 /// \c kFLEXPropertyAttributeKeyTypeEncoding is the only required key.
-/// Keys representing a boolean value should have a value of \c @YES instead of an empty string.
+/// Keys representing a boolean value should have a value of \c YES instead of an empty string.
 - (NSString *)propertyAttributesString;
 
 + (instancetype)attributesDictionaryForProperty:(objc_property_t)property;

+ 1 - 1
Classes/Utility/Categories/NSString+ObjcRuntime.h

@@ -12,7 +12,7 @@
 @interface NSString (Utilities)
 
 /// A dictionary of property attributes if the receiver is a valid property attributes string.
-/// Values are either a string or \c @YES. Boolean attributes which are false will not be
+/// Values are either a string or \c YES. Boolean attributes which are false will not be
 /// present in the dictionary. See this link on how to construct a proper attributes string:
 /// https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtPropertyIntrospection.html
 ///

+ 1 - 1
Classes/Utility/Runtime/Objc/Reflection/FLEXPropertyAttributes.h

@@ -46,7 +46,7 @@ NS_ASSUME_NONNULL_BEGIN
 /// A human-readable version of the property attributes.
 @property (nonatomic, readonly) NSString *fullDeclaration;
 /// A dictionary of the property attributes.
-/// Values are either a string or \c @YES. Boolean attributes
+/// Values are either a string or \c YES. Boolean attributes
 /// which are false will not be present in the dictionary.
 @property (nonatomic, readonly) NSDictionary *dictionary;
 

+ 1 - 1
Classes/Utility/Runtime/Objc/Reflection/FLEXProtocol.h

@@ -64,6 +64,6 @@
 @property (nonatomic, readonly) NSString *typeEncoding;
 /// The method's return type.
 @property (nonatomic, readonly) FLEXTypeEncoding returnType;
-/// \c @YES if this is an instance method, \c @NO if it is a class method, or \c nil if unspecified
+/// \c YES if this is an instance method, \c NO if it is a class method, or \c nil if unspecified
 @property (nonatomic, readonly) NSNumber *instance;
 @end