diff --git a/README.md b/README.md
index 1813d1863..ee438b9d1 100644
--- a/README.md
+++ b/README.md
@@ -388,7 +388,7 @@ ReactDOM.render(
Renders a checkbox list that uses a callback function to pass its selected value/values to the parent component.
* Use `React.setState()` to create a `data` state variable and set its initial value equal to the `options` prop.
-* Create a function `toggle` that is used to toggle the `checked` to update the `data` state variable and call the `onChange` callbac passed via the component's props.
+* Create a function `toggle` that is used to toggle the `checked` to update the `data` state variable and call the `onChange` callback passed via the component's props.
* Render a `
` element and use `Array.prototype.map()` to map the `data` state variable to individual `
` elements with `` elements as their children.
* Each `` element has the `type='checkbox'` attribute and is marked as `readOnly`, as its click events are handled by the parent `
` element's `onClick` handler.
diff --git a/data/snippet_data.json b/data/snippet_data.json
index db2d17c28..a6fec14f8 100644
--- a/data/snippet_data.json
+++ b/data/snippet_data.json
@@ -207,7 +207,7 @@
{
"name": "MultiselectCheckbox.md",
"title": "MultiselectCheckbox",
- "text": "Renders a checkbox list that uses a callback function to pass its selected value/values to the parent component.\n\n* Use `React.setState()` to create a `data` state variable and set its initial value equal to the `options` prop.\n* Create a function `toggle` that is used to toggle the `checked` to update the `data` state variable and call the `onChange` callbac passed via the component's props.\n* Render a `
` element and use `Array.prototype.map()` to map the `data` state variable to individual `
` elements with `` elements as their children.\n* Each `` element has the `type='checkbox'` attribute and is marked as `readOnly`, as its click events are handled by the parent `
` element's `onClick` handler.\n\n",
+ "text": "Renders a checkbox list that uses a callback function to pass its selected value/values to the parent component.\n\n* Use `React.setState()` to create a `data` state variable and set its initial value equal to the `options` prop.\n* Create a function `toggle` that is used to toggle the `checked` to update the `data` state variable and call the `onChange` callback passed via the component's props.\n* Render a `
` element and use `Array.prototype.map()` to map the `data` state variable to individual `
` elements with `` elements as their children.\n* Each `` element has the `type='checkbox'` attribute and is marked as `readOnly`, as its click events are handled by the parent `
\n );\n}\n```",
"```jsx\nconst options = [{ label: 'Item One' }, { label: 'Item Two' }];\n\nReactDOM.render(\n {\n console.log(data);\n }}\n />,\n document.getElementById('root')\n);\n```"
diff --git a/snippets/MultiselectCheckbox.md b/snippets/MultiselectCheckbox.md
index 7584cbb3e..496eb6f3b 100644
--- a/snippets/MultiselectCheckbox.md
+++ b/snippets/MultiselectCheckbox.md
@@ -3,7 +3,7 @@
Renders a checkbox list that uses a callback function to pass its selected value/values to the parent component.
* Use `React.setState()` to create a `data` state variable and set its initial value equal to the `options` prop.
-* Create a function `toggle` that is used to toggle the `checked` to update the `data` state variable and call the `onChange` callbac passed via the component's props.
+* Create a function `toggle` that is used to toggle the `checked` to update the `data` state variable and call the `onChange` callback passed via the component's props.
* Render a `