Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tolo committed May 12, 2015
1 parent d9efdef commit 2b33c11
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions InterfaCSS/InterfaCSS.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,27 +150,27 @@ typedef void (^ISSDidApplyStylingNotificationBlock)(NSArray* propertyDeclaration
#pragma mark - Style classes

/**
* Gets the current style classes for the specifiied UI element.
* Gets the current style classes for the specified UI element.
*/
- (NSSet*) styleClassesForUIElement:(id)uiElement;

/**
* Checks if the specified class is set on the specifiied UI element.
* Checks if the specified class is set on the specified UI element.
*/
- (BOOL) uiElement:(id)uiElement hasStyleClass:(NSString*)styleClass;

/**
* Sets the style classes for the specifiied UI element, replacing any previous style classes.
* Sets the style classes for the specified UI element, replacing any previous style classes.
*/
- (void) setStyleClasses:(NSSet*)styleClasses forUIElement:(id)uiElement;

/**
* Adds a style class to the specifiied UI element.
* Adds a style class to the specified UI element.
*/
- (void) addStyleClass:(NSString*)styleClass forUIElement:(id)uiElement;

/**
* Removes a style class from the specifiied UI element.
* Removes a style class from the specified UI element.
*/
- (void) removeStyleClass:(NSString*)styleClass forUIElement:(id)uiElement;

Expand Down

0 comments on commit 2b33c11

Please sign in to comment.