Skip to content

Commit

Permalink
docs(Grid): fix some typos (#1343)
Browse files Browse the repository at this point in the history
  • Loading branch information
dguo authored and levithomason committed Feb 18, 2017
1 parent 36c5762 commit 691f51e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/collections/Grid/Grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Grid.propTypes = {
/** A grid can have its columns stack on-top of each other after reaching mobile breakpoints. */
stackable: PropTypes.bool,

/** An can stretch its contents to take up the entire grid height. */
/** A grid can stretch its contents to take up the entire grid height. */
stretched: PropTypes.bool,

/** A grid can specify its text alignment. */
Expand Down
4 changes: 2 additions & 2 deletions src/collections/Grid/GridColumn.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ GridColumn.propTypes = {
/** A column can appear only for a specific device, or screen sizes. */
only: PropTypes.oneOf(['computer', 'large screen', 'mobile', 'tablet mobile', 'tablet', 'widescreen']),

/** An can stretch its contents to take up the entire grid or row height. */
/** A column can stretch its contents to take up the entire grid or row height. */
stretched: PropTypes.bool,

/** A column can specify a width for a tablet device. */
tablet: PropTypes.oneOf(SUI.WIDTHS),

/** A row can specify its text alignment. */
/** A column can specify its text alignment. */
textAlign: PropTypes.oneOf(SUI.TEXT_ALIGNMENTS),

/** A column can specify its vertical alignment to have all its columns vertically centered. */
Expand Down
4 changes: 2 additions & 2 deletions src/collections/Grid/GridRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ GridRow.propTypes = {
/** A row can appear only for a specific device, or screen sizes. */
only: PropTypes.oneOf(['computer', 'large screen', 'mobile', 'tablet mobile', 'tablet', 'widescreen']),

/** A row can specify that its columns should reverse order at different device sizes. */
/** A row can specify that its columns should reverse order at different device sizes. */
reversed: PropTypes.oneOf([
'computer', 'computer vertically', 'mobile', 'mobile vertically', 'tablet', 'tablet vertically',
]),

/** An can stretch its contents to take up the entire column height. */
/** A row can stretch its contents to take up the entire column height. */
stretched: PropTypes.bool,

/** A row can specify its text alignment. */
Expand Down

0 comments on commit 691f51e

Please sign in to comment.