aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/RxLibrary/private/GRXNSScalarEnumerator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/objective-c/RxLibrary/private/GRXNSScalarEnumerator.h')
-rw-r--r--src/objective-c/RxLibrary/private/GRXNSScalarEnumerator.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/objective-c/RxLibrary/private/GRXNSScalarEnumerator.h b/src/objective-c/RxLibrary/private/GRXNSScalarEnumerator.h
index 12aa51e213..24a21a1b22 100644
--- a/src/objective-c/RxLibrary/private/GRXNSScalarEnumerator.h
+++ b/src/objective-c/RxLibrary/private/GRXNSScalarEnumerator.h
@@ -33,9 +33,11 @@
#import <Foundation/Foundation.h>
-// Concrete subclass of NSEnumerator whose instances return a single object before finishing.
+/** Concrete subclass of NSEnumerator whose instances return a single object before finishing. */
@interface GRXNSScalarEnumerator : NSEnumerator
-// Param value: the single object this instance will produce. After the first invocation of
-// nextObject, the value is released.
+/**
+ * Param value: the single object this instance will produce. After the first invocation of
+ * nextObject, the value is released.
+ */
- (instancetype)initWithValue:(id)value;
@end