Skip to content

Commit 5d1c8ac

Browse files
authored
Fixing various spelling errors. (#248)
* Fixing various spelling errors. Guess who finally installed the spell checking plugin for VS Code? This guy. * fix linting error
1 parent 17bed65 commit 5d1c8ac

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ A compound component that creates a bunch of Dot's automatically for you.
320320
| dotNumbers | boolean | false | No | Setting to true automatically adds text numbers the dot buttons starting at 1. |
321321
| disableActiveDots | boolean | true | No | Setting to true make all dots, including active dots, enabled. |
322322
| showAsSelectedForCurrentSlideOnly | boolean | false | No | Setting to true show only the current slide dot as selected. |
323-
| renderDots | function| null | No | It accpets `props` and overrides renderDots() in <DotGroup/>. |
323+
| renderDots | function| null | No | It accepts `props` and overrides renderDots() in <DotGroup/>. |
324324

325325
#### The DotGroup component creates the following pseudo HTML by default:
326326

@@ -355,7 +355,7 @@ A button for moving the slider backwards. Backwards on a horizontal carousel mea
355355

356356
| property | type | default | required | purpose |
357357
| -------- | ---- | ------- | -------- | ------- |
358-
| **children** | [string&#124;node] | | **Yes** | Children is a special React property. Basically, the ButtonnBack component needs to wrap other components and/or JSX |
358+
| **children** | [string&#124;node] | | **Yes** | Children is a special React property. Basically, the ButtonBack component needs to wrap other components and/or JSX |
359359
| className | [string&#124;null] | null | No | Optional className string that will be appended to the component's className string. |
360360
| disabled | [boolean&#124;null] | null | No | Null means ButtonBack will automatically determine if this button is disabled. Setting this to true will force the button to be disabled. Setting this to false will prevent the button from ever being disabled. |
361361
| onClick | [function&#124;null] | null | No | Optional callback function that is called after the internal onClick function is called. It is passed the React synthetic event |

Diff for: src/App/App.jsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class DevelopmentApp extends React.Component {
8383
<h2 className={s.headline}>What is &quot;unopinionated?&quot;</h2>
8484
<p>
8585
The Pure React Carousel suite of React components is not a turn-key solution. Rather,
86-
think of these as a set of new suite of HTML tags similar in realtionship to table tags
86+
think of these as a set of new suite of HTML tags similar in relationship to table tags
8787
like table, tr, th, td, tbody, thead, tfoot.
8888
</p>
8989
<p>
@@ -102,7 +102,7 @@ class DevelopmentApp extends React.Component {
102102
<div className={s.examplesInnerCenter}>
103103
<h2 className={s.headline}>Real World Example</h2>
104104
<p>
105-
Here are two examples of what can be acheived with Pure React Carousel. This is how we
105+
Here are two examples of what can be achieved with Pure React Carousel. This is how we
106106
use the suite of components on the Express.com website.
107107
</p>
108108
<p>
@@ -128,8 +128,8 @@ class DevelopmentApp extends React.Component {
128128
<p>
129129
These examples are completely un-styled. Pure React Carousel does not come with styles
130130
that must be defeated in order to match your organization&apos;s branding. So, to
131-
distract you from the seeming lack of finess, most of our examples involve pictures of
132-
cats!
131+
distract you from the seeming lack of finesse, most of our examples involve pictures
132+
of cats!
133133
</p>
134134
<p>
135135
<label>

Diff for: src/App/examples/Example11/Example11.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ export default () => (
2727
>
2828
<h2 className={s.headline}>Carousel with custom event handlers.</h2>
2929
<p>
30-
Simple carousel with custom event handlers attachet to the
30+
Simple carousel with custom event handlers attached to the
3131
{' '}
3232
<code>&lt;Slider /&gt;</code>
3333
{' '}
3434
component&apos;s
3535
{' '}
3636
<code>trayProps</code>
3737
{' '}
38-
property. Open your browser devloper tools and look at
38+
property. Open your browser developer tools and look at
3939
the console log, then manipulate the carousel.
4040
</p>
4141
<Slider

Diff for: src/App/examples/Example5/Example5.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default () => (
2222
>
2323
<h2 className={s.headline}>Horizontal Carousel (With Master Loading Spinner)</h2>
2424
<p>
25-
Horizontal Carouisel with regular, non-zooming images and dotNumbers on the Dot
25+
Horizontal Carousel with regular, non-zooming images and dotNumbers on the Dot
2626
Group.
2727
</p>
2828
<Slider className={s.slider}>

Diff for: src/App/examples/Example6/Example6.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ export default () => (
2020
naturalSlideHeight={500}
2121
hasMasterSpinner
2222
>
23-
<h2 className={s.headline}>Simple Carousel with vertically alligned nav buttons</h2>
23+
<h2 className={s.headline}>Simple Carousel with vertically aligned nav buttons</h2>
2424
<p>
25-
Wrap the &lt;Slider /&gt;, &lt;ButtonBack /&gt;, &lt;ButonNext /&gt; components in a div with
25+
Wrap the &lt;Slider /&gt;, &lt;ButtonBack /&gt;, &lt;ButtonNext /&gt; components in a div with
2626
relative positioning. Add absolute positioning to the buttons.
2727
</p>
2828
<div className={s.container}>

Diff for: src/App/examples/Example7/Example7.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default () => (
2121
<h2 className={s.headline}>Simple Carousel With React Redux</h2>
2222
<p>
2323
The slides in this example use components that utilize React-Redux to track a counter value.
24-
This example demonstraits that the context used by Pure React Carousel won&apos;t interfere
24+
This example demonstrates that the context used by Pure React Carousel won&apos;t interfere
2525
with components connected to React-Redux.
2626
</p>
2727
<div className={s.container}>

Diff for: src/App/examples/Example8/Example8.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ export default () => (
1818
>
1919
<h2 className={s.headline}>Carousel (lockOnWindowScroll set to TRUE)</h2>
2020
<p>
21-
- When scrolling the browser, up and down, horizontal scrollers will not scroll horizontally.
21+
- When scrolling the browser, up and down, horizontal scrollbars will not scroll horizontally.
2222
</p>
2323
<p>
24-
- When scrolling the browser, left and right, vertical scrollers will not scroll vertically.
24+
- When scrolling the browser, left and right, vertical scrollbars will not scroll vertically.
2525
</p>
2626
<p>
2727
- This spinner will go away after all the images have loaded.

0 commit comments

Comments
 (0)