diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5d3a33b7..8de5876c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,7 +15,7 @@ yarn run bootstrap > `yarn run bootstrap` anytime that you have changed the dependencies within a > package. -## Commiting changes +## Committing changes `cf-ui` follows the [`conventional-commits`](http://conventionalcommits.org/) standard and enforces it with a pre-commit hook that should have been installed diff --git a/packages/cf-component-box/README.md b/packages/cf-component-box/README.md index 68e27d97..50caf091 100644 --- a/packages/cf-component-box/README.md +++ b/packages/cf-component-box/README.md @@ -7,7 +7,7 @@ This is styling component similar to cf-component-flex which allows for arbitrar This component should only be used when the built in style doesn't quite fit the bill and when it can't be done with fela. Ideally, cf-ui components should have the right styling built in for most cases. In the few edge cases that pop up in real world feature development, this is an alternative -to wrapping your component in a `
` or `` and styling it with css to accomodate one-offs. +to wrapping your component in a `
` or `` and styling it with css to accommodate one-offs. Also, note that using Box effectively performs a component level CSS reset, as all props not provided will be pulled from the default theme. These defaults, outlined in propertiesSpec, diff --git a/packages/cf-style-container/README.md b/packages/cf-style-container/README.md index 38d9e716..263390fe 100644 --- a/packages/cf-style-container/README.md +++ b/packages/cf-style-container/README.md @@ -216,7 +216,7 @@ object properties and their keys. The `filter(key, value, accum)` callback will be invoked with the current key, value and accumulated value for each pair. Useful to blacklist object keys. -All filter functions are composible. +All filter functions are composable. ```javascript import { filterNone, filterProps } from 'cf-style-container'; diff --git a/packages/cf-style-provider/README.md b/packages/cf-style-provider/README.md index bb447cf8..ce34414f 100644 --- a/packages/cf-style-provider/README.md +++ b/packages/cf-style-provider/README.md @@ -61,7 +61,7 @@ renderer.renderToString(); // returns CSS as a string context. Handy for testing with enzyme. **NOTE:** felaTestContext is not exported from the index, you must provide a -deep path to acccess it. +deep path to access it. ```js import { mount } from 'enzyme'; @@ -92,7 +92,7 @@ test('should call onPageChange when clicking another page', () => { **For testing**. Uses internally felaTestContext. It shallow renders the component and returns snapshots of DOM and styles as a object with properties `component` and `styles`. Use it like this: **NOTE:** feleSnapshot is not exported from the index, you must provide a deep -path to acccess it. +path to access it. ```js import React from 'react';