Skip to content

Commit

Permalink
docs: Fix typos in react-table docs (microsoft#26213)
Browse files Browse the repository at this point in the history
* docs: Fix typos in react-table docs

* changefile
  • Loading branch information
ling1726 authored and q1b committed Jan 24, 2023
1 parent 23e785e commit 81ebcd6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "docs: Fix typos in react-table docs",
"packageName": "@fluentui/react-table",
"email": "[email protected]",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ RowNavigation.parameters = {
story: [
'Different keyboard navigation strategies are supported through the `focusMode` prop.',
'',
"> ⚠️ The Fluent UI team currently don't know all the a11y specifics of row navigation yet to provide",
"> ⚠️ The Fluent UI team doesn't currently know all the a11y specifics of row navigation yet to provide",
'accurate guidance for this scenario. Until then, if using the unstable mode of this keyboard navigation',
'strategy, the user is responsible for the accessibility of the component.',
].join('\n'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ RowNavigation.parameters = {
story: [
'Different keyboard navigation strategies are supported through the `focusMode` prop.',
'',
"> ⚠️ The Fluent UI team currently don't know all the a11y specifics of row navigation yet to provide",
"> ⚠️ The Fluent UI team doesn't currently know know all the a11y specifics of row navigation yet to provide",
'accurate guidance for this scenario. Until then, if using the unstable mode of this keyboard navigation',
'strategy, the user is responsible for the accessibility of the component.',
].join('\n'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A Table displays sets of two-dimensional data. The primitive components can be f
feature sets. The library provides a default `useTableFeatures` hook that handles the business logic and state management of common
features. There is no obligation to use our hook with these components, we've created it for convenience.
The `useTableFeatures` hook was designed with feature composition in mind. This means that are composed using
The `useTableFeatures` hook was designed with feature composition in mind. This means that they are composed using
plugins hooks such as `useTableSort` and `useTableSelection` as a part of `useTableFeatures`. This means
that as the feature set expands, users will not need to pay the bundle size price for features that they do not intend
to use. Please consult the usage examples below for more details.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ Virtualization.parameters = {
'',
'The `Table` primitive components are unopinionated with respect to virtualization. They should be compatible',
'with any virtualization library. Hoisting business logic to a state management',
'hook like `useTableFeaturesFeautres',
'hook like `useTableFeatures`',
'means that features can persist between the mounting/unmounting that happens during virtualization.',
'The below example uses the [react-window](https://www.npmjs.com/package/react-window) library.',
].join('\n'),
Expand Down

0 comments on commit 81ebcd6

Please sign in to comment.