Skip to content

Commit 357513f

Browse files
committed
Missing doc comments
1 parent d8c9ca2 commit 357513f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Source/Foundation/NSData.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import Foundation
1010
import ReactiveCocoa
1111

1212
extension NSData {
13-
/// Read the data at the URL.
14-
/// Sends the data or the error.
13+
/// Read the data at the URL, sending the result or an error.
1514
public class func rex_dataWithContentsOfURL(url: NSURL, options: NSDataReadingOptions = NSDataReadingOptions()) -> SignalProducer<NSData, NSError> {
1615
return SignalProducer<NSData, NSError> { observer, disposable in
1716
do {

Source/UIKit/UILabel.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ extension UILabel {
1414
public var rex_text: MutableProperty<String> {
1515
return associatedProperty(self, keyPath: "text")
1616
}
17-
17+
18+
/// Wraps a label's `textColor` value in a bindable property.
1819
public var rex_textColor: MutableProperty<UIColor> {
1920
return associatedProperty(self, key: &textColor, initial: { $0.textColor }, setter: { $0.textColor = $1 })
2021
}

0 commit comments

Comments
 (0)