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

Fix autoInit description typo in docs #323

Merged
merged 1 commit into from
Aug 16, 2020
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/_packages/checkbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ $icon-indeterminate: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000
<tr>
<td data-mobile-label="Key"><code class="code text_nowrap">autoInit</code></td>
<td data-mobile-label="Default"><code class="code color_secondary text_nowrap">false</code></td>
<td data-mobile-label="Desc">Automatically instantiates the instance.</td>
<td data-mobile-label="Desc">Automatically initializes the instance.</td>
</tr>
<tr>
<td data-mobile-label="Key"><code class="code text_nowrap">stateAttr</code></td>
Expand Down
2 changes: 1 addition & 1 deletion docs/_packages/drawer.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ Drawers can slide in from the left or right using the position modifiers:
<tr>
<td data-mobile-label="Key"><code class="code text-nowrap">autoInit</code></td>
<td data-mobile-label="Default"><code class="code color-secondary text-nowrap">false</code></td>
<td data-mobile-label="Desc">Automatically instantiates the instance.</td>
<td data-mobile-label="Desc">Automatically initializes the instance.</td>
</tr>

<!-- Data attributes -->
Expand Down
2 changes: 1 addition & 1 deletion docs/_packages/modal.md
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ Adjusts the size of modals. This modifier provides two options, `modal_size_sm`
<tr>
<td data-mobile-label="Key"><code class="code text-nowrap">autoInit</code></td>
<td data-mobile-label="Default"><code class="code color-secondary text-nowrap">false</code></td>
<td data-mobile-label="Desc">Automatically instantiates the instance.</td>
<td data-mobile-label="Desc">Automatically initializes the instance.</td>
</tr>

<!-- Data attributes -->
Expand Down
2 changes: 1 addition & 1 deletion packages/checkbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ $icon-indeterminate: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000

| Key | Default | Description |
| ------------ | ---------------- | ------------------------------------------------------------------ |
| `autoInit` | `false` | Automatically instantiates the instance. |
| `autoInit` | `false` | Automatically initializes the instance. |
| `stateAttr` | `'aria-checked'` | Attribute to check mixed state against. |
| `StateValue` | `'mixed'` | The mixed value to check for. Applied as the value of `stateAttr`. |

Expand Down
2 changes: 1 addition & 1 deletion packages/drawer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ Drawers can slide in from the left or right using the position modifiers:

| Key | Default | Description |
| ------------------- | --------------------- | ---------------------------------------------------------------------------------------------------- |
| `autoInit` | `false` | Automatically instantiates the instance. |
| `autoInit` | `false` | Automatically initializes the instance. |
| `dataDrawer` | `'drawer'` | Data attribute for a drawer. |
| `dataDialog` | `'drawer-dialog'` | Data attribute for a drawer dialog. |
| `dataToggle` | `'drawer-toggle'` | Data attribute for a drawer toggle trigger. |
Expand Down
2 changes: 1 addition & 1 deletion packages/modal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ Adjusts the size of modals. This modifier provides two options, `modal_size_sm`

| Key | Default | Description |
| ------------------- | --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `autoInit` | `false` | Automatically instantiates the instance. |
| `autoInit` | `false` | Automatically initializes the instance. |
| `dataModal` | `'modal'` | Data attribute for a modal. |
| `dataDialog` | `'modal-dialog'` | Data attribute for a modal. dialog |
| `dataOpen` | `'modal-open'` | Data attribute for a modal open trigger. |
Expand Down