Skip to content

Commit 4c78e0f

Browse files
authored
Merge pull request Boris-Em#42 from czarny/master
Fixed typos in doc strings.
2 parents 48be291 + e011e41 commit 4c78e0f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Classes/BEMAnimationManager.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343

4444
/** Animation engine to create a fill animation.
4545
* @param bounces The number of bounces for the animation.
46-
* @param amplitue How far does the animation bounce.
47-
* @param reserve Flag to track if the animation should fill or empty the layer.
46+
* @param amplitude How far does the animation bounce.
47+
* @param reverse Flag to track if the animation should fill or empty the layer.
4848
* @return Returns the CAKeyframeAnimation object.
4949
*/
5050
- (CAKeyframeAnimation *)fillAnimationWithBounces:(NSUInteger)bounces amplitude:(CGFloat)amplitude reverse:(BOOL)reverse;

Classes/BEMCheckBox.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,15 @@ typedef NS_ENUM(NSInteger, BEMAnimationType) {
155155
/** Sent to the delegate every time the check box gets tapped.
156156
* @discussion This method gets triggered after the properties are updated (on), but before the animations, if any, are completed.
157157
* @seealso animationDidStopForCheckBox:
158-
* @param checkBox: The BEMCheckBox instance that has been tapped.
158+
* @param checkBox The BEMCheckBox instance that has been tapped.
159159
*/
160160
- (void)didTapCheckBox:(BEMCheckBox*)checkBox;
161161

162162

163163
/** Sent to the delegate every time the check box finishes being animated.
164164
* @discussion This method gets triggered after the properties are updated (on), and after the animations are completed. It won't be triggered if no animations are started.
165165
* @seealso didTapCheckBox:
166-
* @param checkBox: The BEMCheckBox instance that was animated.
166+
* @param checkBox The BEMCheckBox instance that was animated.
167167
*/
168168
- (void)animationDidStopForCheckBox:(BEMCheckBox *)checkBox;
169169

0 commit comments

Comments
 (0)