Skip to content

Commit

Permalink
docs(misc): fix typos in props descriptions + make minor text change
Browse files Browse the repository at this point in the history
Fix typos in props description, and make minor text change to improve understanding of prop usage
  • Loading branch information
katieraby committed Jun 22, 2021
1 parent ff70355 commit 54f30fb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/src/examples/collections/Table/Variations/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const Variations = () => (

<ComponentExample
title='Celled'
description='A table may be divided each row into separate cells.'
description='A table may be divided into individual cells.'
examplePath='collections/Table/Variations/TableExampleCelled'
/>

Expand Down
4 changes: 2 additions & 2 deletions src/collections/Grid/Grid.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export interface StrictGridProps {
/** Represents column count per row in Grid. */
columns?: SemanticWIDTHS | 'equal'

/** A grid can be combined with a container to use avaiable layout and alignment. */
/** A grid can be combined with a container to use available layout and alignment. */
container?: boolean

/** A grid can have dividers between its columns. */
Expand All @@ -60,7 +60,7 @@ export interface StrictGridProps {
/** A grid can have its columns stack on-top of each other after reaching mobile breakpoints. */
stackable?: boolean

/** 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?: boolean

/** A grid can specify its text alignment. */
Expand Down
4 changes: 2 additions & 2 deletions src/collections/Grid/GridColumn.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ export interface StrictGridColumnProps {
/** A column can appear only for a specific device, or screen sizes. */
only?: GridOnlyProp

/** 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?: boolean

/** A column can specify a width for a tablet device. */
tablet?: SemanticWIDTHS

/** A row can specify its text alignment. */
/** A column can specify its text alignment. */
textAlign?: SemanticTEXTALIGNMENTS

/** 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.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ export interface StrictGridRowProps {
/** A row can appear only for a specific device, or screen sizes. */
only?: GridOnlyProp

/** 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?: GridReversedProp

/** 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?: boolean

/** A row can specify its text alignment. */
Expand Down
2 changes: 1 addition & 1 deletion src/collections/Table/Table.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface StrictTableProps {
/** A table can reduce its complexity to increase readability. */
basic?: boolean | 'very'

/** A table may be divided each row into separate cells. */
/** A table may be divided into individual cells. */
celled?: boolean | 'internally'

/** Primary content. */
Expand Down
2 changes: 1 addition & 1 deletion src/collections/Table/Table.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Table.propTypes = {
/** A table can reduce its complexity to increase readability. */
basic: PropTypes.oneOfType([PropTypes.oneOf(['very']), PropTypes.bool]),

/** A table may be divided each row into separate cells. */
/** A table may be divided into individual cells. */
celled: PropTypes.bool,

/** Primary content. */
Expand Down

0 comments on commit 54f30fb

Please sign in to comment.