Skip to content

Commit 3bd5db0

Browse files
committed
Minor readme and comments update.
Summary: Fixes indentation. Reviewers: ajsecord, #material_components_ios_owners Reviewed By: ajsecord, #material_components_ios_owners Projects: #material_components_ios_owners Differential Revision: http://codereview.cc/D53
1 parent eb03d30 commit 3bd5db0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

components/PageControl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Add the page control to a view and set the desired page control properties. This
4141
- (void)viewDidLoad {
4242
[super viewDidLoad];
4343

44-
// Scroll view configuration
44+
// Scroll view configuration.
4545
_scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds];
4646
_scrollView.delegate = self;
4747
...

components/SpritedAnimationView/src/MDCSpritedAnimationView.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
/**
2020
* Animation view for loading in sprites.
2121
*
22-
* This control provides performance benefits over animating an array of images with a UIImageView.
23-
* Only a single image composed of individual sprite frames is used, and animation simply consists
24-
* of updating the layer contentsRect.
22+
* This control provides an alternative to animating an array of images with a UIImageView. Only
23+
* a single image composed of individual sprite frames is used, and animation simply consists of
24+
* updating the layer contentsRect.
2525
*
2626
* @ingroup MDCSpritedAnimationView
2727
*/
@@ -72,7 +72,7 @@
7272
* @return Initialized sprited animation view.
7373
*/
7474
- (nonnull instancetype)initWithSpriteSheetImage:
75-
(nullable UIImage *)spriteSheetImage NS_DESIGNATED_INITIALIZER;
75+
(nullable UIImage *)spriteSheetImage NS_DESIGNATED_INITIALIZER;
7676

7777
/** Please use initWithSpriteSheetImage:. */
7878
- (nullable instancetype)initWithCoder:(nonnull NSCoder *)aDecoder NS_UNAVAILABLE;

0 commit comments

Comments
 (0)