Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(misc): fix typos in props descriptions + make minor text change #4218

Merged
merged 1 commit into from
Jun 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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