Skip to content

Commit

Permalink
Missing doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
neilpa committed Dec 16, 2015
1 parent d8c9ca2 commit 357513f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Source/Foundation/NSData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ import Foundation
import ReactiveCocoa

extension NSData {
/// Read the data at the URL.
/// Sends the data or the error.
/// Read the data at the URL, sending the result or an error.
public class func rex_dataWithContentsOfURL(url: NSURL, options: NSDataReadingOptions = NSDataReadingOptions()) -> SignalProducer<NSData, NSError> {
return SignalProducer<NSData, NSError> { observer, disposable in
do {
Expand Down
3 changes: 2 additions & 1 deletion Source/UIKit/UILabel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ extension UILabel {
public var rex_text: MutableProperty<String> {
return associatedProperty(self, keyPath: "text")
}


/// Wraps a label's `textColor` value in a bindable property.
public var rex_textColor: MutableProperty<UIColor> {
return associatedProperty(self, key: &textColor, initial: { $0.textColor }, setter: { $0.textColor = $1 })
}
Expand Down

0 comments on commit 357513f

Please sign in to comment.