ObjFW  Check-in [a20995ef75]

Overview
Comment:OFIntrospection: Fix a typo
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a20995ef7543c474597c656e0f4b82f3318637e7b7ca713e9f8647a6256fd333
User & Date: js on 2018-01-21 11:33:00
Other Links: manifest | tags
Context
2018-01-21
12:18
OFValue: Support for {point,dimension,rectangle}s check-in: 2ca34d3de1 user: js tags: trunk
11:33
OFIntrospection: Fix a typo check-in: a20995ef75 user: js tags: trunk
03:28
OFValue: Add support for ranges check-in: cb1891cca1 user: js tags: trunk
Changes

Modified src/OFIntrospection.h from [2c3e6c42ab] to [3a779f3f6d].

71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
 *
 * @brief A class for describing a property.
 */
@interface OFProperty: OFObject
{
	OFString *_name;
	unsigned int _attributes;
	OFString *_Nullable _getter, *_Nullable _setter, *_Nullable iVar;
}

/*!
 * @brief The name of the property.
 */
@property (readonly, nonatomic) OFString *name;








|







71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
 *
 * @brief A class for describing a property.
 */
@interface OFProperty: OFObject
{
	OFString *_name;
	unsigned int _attributes;
	OFString *_Nullable _getter, *_Nullable _setter, *_Nullable _iVar;
}

/*!
 * @brief The name of the property.
 */
@property (readonly, nonatomic) OFString *name;