Skip to content

Commit 728fc89

Browse files
committed
Fix:Typo in multiple files of docs and code folder
1 parent 50f3fdb commit 728fc89

13 files changed

+14
-14
lines changed

CONTRIBUTING/RELEASING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ No process is defined for this.
476476

477477
### Merges to `main` without versioning
478478

479-
As described in more details in [the Patch Releases section](#patch-releases), there are scenarios where you want to patch [unreleasable](#which-changes-are-considered-releasable-and-what-does-it-mean) content back to `main` without bumping versions or publishing a new release. This happens automatically as long as all the unpicked patch pull requests have unreleasable labels. In that case the prepared patch pull request will change form slighty, to just cherry-picking the patches without bumping the versions.
479+
As described in more details in [the Patch Releases section](#patch-releases), there are scenarios where you want to patch [unreleasable](#which-changes-are-considered-releasable-and-what-does-it-mean) content back to `main` without bumping versions or publishing a new release. This happens automatically as long as all the unpicked patch pull requests have unreleasable labels. In that case the prepared patch pull request will change form slightly, to just cherry-picking the patches without bumping the versions.
480480

481481
## FAQ
482482

code/frameworks/nextjs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export default {
147147

148148
### Options
149149

150-
You can be pass an options object for addional configuration if needed.
150+
You can be pass an options object for additional configuration if needed.
151151

152152
For example:
153153

@@ -864,7 +864,7 @@ Next.js comes with a lot of things for free out of the box like sass support, bu
864864

865865
Any webpack modifications desired for Storybook should be made in [.storybook/main.js](https://storybook.js.org/docs/react/builders/webpack#extending-storybooks-webpack-config).
866866

867-
Note: Not all webpack modifications are copy/paste-able between `next.config.js` and `.storybook/main.js`. It is recommended to do your reasearch on how to properly make your modifcation to Storybook's webpack config and on how [webpack works](https://webpack.js.org/concepts/).
867+
Note: Not all webpack modifications are copy/paste-able between `next.config.js` and `.storybook/main.js`. It is recommended to do your research on how to properly make your modification to Storybook's webpack config and on how [webpack works](https://webpack.js.org/concepts/).
868868

869869
Below is an example of how to add svgr support to Storybook with this framework.
870870

code/lib/instrumenter/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Storybook Instrumenter
22

3-
The Storybook Instrumenter is used to patch a (3rd party) module to track and intercept function invocations for step-through debugging using the Interactions addon. In essense, the Instrumenter traverses a given object, recursively monkey-patching any functions to make them "tracked".
3+
The Storybook Instrumenter is used to patch a (3rd party) module to track and intercept function invocations for step-through debugging using the Interactions addon. In essence, the Instrumenter traverses a given object, recursively monkey-patching any functions to make them "tracked".
44

55
During normal operation, tracked functions simply call through to their original function, forwarding the return value. As a side-effect, they also emit a `call` event whenever they are invoked.
66

code/lib/postinstall/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Storybook Postinstall Utilties
1+
# Storybook Postinstall Utilities
22

33
A minimal utility library for addons to update project configurations after the addon is installed via the [Storybook CLI](https://github.com/storybookjs/storybook/tree/main/lib/cli), e.g. `sb add docs`.
44

code/presets/create-react-app/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ module.exports = {
8787

8888
### Custom `react-scripts` packages
8989

90-
In most cases, this preset will find your `react-scripts` package, even if it's a fork of the offical `react-scripts`.
90+
In most cases, this preset will find your `react-scripts` package, even if it's a fork of the official `react-scripts`.
9191

9292
In the event that it doesn't, you can set the package's name with `scriptsPackageName`.
9393

docs/api/main-config-core.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,4 +204,4 @@ Enable crash reports to be sent to Storybook [telemetry](../configure/telemetry.
204204

205205
Type: `RendererName`
206206

207-
<!-- TOOD: Is this used? Should it be documented? -->
207+
<!-- TODO: Is this used? Should it be documented? -->

docs/sharing/publish-storybook.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Examples: [Netlify](https://www.netlify.com/), [S3](https://aws.amazon.com/en/s3
166166

167167
## Search engine optimization (SEO)
168168

169-
If your Storybook is publically viewable, you may wish to configure how it is represented in search engine result pages.
169+
If your Storybook is publicly viewable, you may wish to configure how it is represented in search engine result pages.
170170

171171
### Description
172172

docs/snippets/angular/my-component-play-function-with-delay.ts.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const DelayedStory: Story = {
2424

2525
const exampleElement = canvas.getByLabelText('example-element');
2626

27-
// The delay option set the ammount of milliseconds between characters being typed
27+
// The delay option set the amount of milliseconds between characters being typed
2828
await userEvent.type(exampleElement, 'random string', {
2929
delay: 100,
3030
});

docs/snippets/common/my-component-play-function-with-delay.js.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const DelayedStory = {
1818

1919
const exampleElement = canvas.getByLabelText('example-element');
2020

21-
// The delay option set the ammount of milliseconds between characters being typed
21+
// The delay option set the amount of milliseconds between characters being typed
2222
await userEvent.type(exampleElement, 'random string', {
2323
delay: 100,
2424
});

docs/snippets/common/my-component-play-function-with-delay.ts-4-9.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const DelayedStory: Story = {
2424

2525
const exampleElement = canvas.getByLabelText('example-element');
2626

27-
// The delay option set the ammount of milliseconds between characters being typed
27+
// The delay option set the amount of milliseconds between characters being typed
2828
await userEvent.type(exampleElement, 'random string', {
2929
delay: 100,
3030
});

docs/snippets/common/my-component-play-function-with-delay.ts.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const DelayedStory: Story = {
2424

2525
const exampleElement = canvas.getByLabelText('example-element');
2626

27-
// The delay option set the ammount of milliseconds between characters being typed
27+
// The delay option set the amount of milliseconds between characters being typed
2828
await userEvent.type(exampleElement, 'random string', {
2929
delay: 100,
3030
});

docs/snippets/web-components/my-component-play-function-with-delay.js.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const DelayedStory = {
1616

1717
const exampleElement = canvas.getByLabelText('example-element');
1818

19-
// The delay option set the ammount of milliseconds between characters being typed
19+
// The delay option set the amount of milliseconds between characters being typed
2020
await userEvent.type(exampleElement, 'random string', {
2121
delay: 100,
2222
});

docs/snippets/web-components/my-component-play-function-with-delay.ts.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const DelayedStory: Story = {
2020

2121
const exampleElement = canvas.getByLabelText('example-element');
2222

23-
// The delay option set the ammount of milliseconds between characters being typed
23+
// The delay option set the amount of milliseconds between characters being typed
2424
await userEvent.type(exampleElement, 'random string', {
2525
delay: 100,
2626
});

0 commit comments

Comments
 (0)