Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Open
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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/cf-component-box/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<div>` or `<span>` and styling it with css to accomodate one-offs.
to wrapping your component in a `<div>` or `<span>` 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,
Expand Down
2 changes: 1 addition & 1 deletion packages/cf-style-container/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
4 changes: 2 additions & 2 deletions packages/cf-style-provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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';
Expand Down