diff --git a/docs/configure/overview.md b/docs/configure/overview.md
index 462d88bc3cd..f0998cb7d24 100644
--- a/docs/configure/overview.md
+++ b/docs/configure/overview.md
@@ -180,10 +180,10 @@ You can also use Storybook's API to configure your project with TypeScript. Unde
| `addons` | Sets the list of [addons](/addons) loaded by Storybook
`addons:['@storybook/addon-essentials']` |
| `typescript` | Configures how Storybook handles [TypeScript files](./typescript.md)
`typescript: { check: false, checkOptions: {} }` |
| `framework` | Configures Storybook based on a set of framework-specific settings
`framework:'@storybook/svelte'` |
-| `core` | Sets Storybook's Webpack configuration
`core:{ builder: 'webpack5'}` |
-| `features` | Enables Storybook's additional features
. See table below for a list of available features `features: { storyStoreV7: true }` |
+| `core` | Configures Storybook's internal features.
`core: { builder: 'webpack5' }` |
+| `features` | Enables Storybook's additional features.
See table below for a list of available features `features: { storyStoreV7: true }` |
| `refs` | Configures [Storybook composition](../sharing/storybook-composition.md)
`refs:{ example: { title: 'ExampleStorybook', url:'https://your-url.com' } }` |
-| `logLevel` | Configures Storybook's logs in the browser terminal. Useful for debugging
`logLevel: 'debug'` |
+| `logLevel` | Configures Storybook's logs in the browser terminal. Useful for debugging
`logLevel: 'debug'` |
| `webpackFinal` | Customize Storybook's [Webpack](./webpack.md) setup
`webpackFinal: async (config:any) => { return config; }` |
## Configure story rendering
diff --git a/docs/snippets/common/storybook-storyloading-with-custom-object.js.mdx b/docs/snippets/common/storybook-storyloading-with-custom-object.js.mdx
index 7b05042aafe..3859a7c4ae3 100644
--- a/docs/snippets/common/storybook-storyloading-with-custom-object.js.mdx
+++ b/docs/snippets/common/storybook-storyloading-with-custom-object.js.mdx
@@ -8,7 +8,7 @@ module.exports = {
directory: '../packages/stories',
// 👇 The titlePrefix field will generate automatic titles for your stories
titlePrefix: 'MyComponents',
- // 👇 Storybook will load all files that contain the stories extensio
+ // 👇 Storybook will load all files that contain the stories extension
files: '*.stories.*',
},
],