Skip to content

Commit c1433b9

Browse files
authored
Merge pull request #9 from epilande/master
Fix typos & links
2 parents dfd13c8 + b6f0424 commit c1433b9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The approach of react-css-themr consists of a *provider* and a *decorator*. The
2828

2929
There are three possible sources for your component. Sorted by priority: **context**, **configuration** and **props**. Any of them can be missing. In case multiple themes are present, you may want to compose the final classnames object in three different ways:
3030

31-
- *Override*: the theme object with the highest priority is the one used.
31+
- *Override*: the theme object with the highest priority is the one used.
3232
- *Softly merging*: theme objects are merged but if a key is present in more than one object, the final value corresponds to the theme with highest priority.
3333
- *Deeply merging*: theme objects are merged and if a key is present in more than one object, the values for each objects are concatenated.
3434

@@ -75,7 +75,7 @@ export default (props) => (
7575
7676
### Default theming
7777
78-
If you use a component with a base theme, you may to want import the component with the theme already injected. Then you can compose its style via props with another theme object. In this case the base css will **always** be bundled:
78+
If you use a component with a base theme, you may want to import the component with the theme already injected. Then you can compose its style via props with another theme object. In this case the base css will **always** be bundled:
7979
8080
```jsx
8181
// SuccessButton.js
@@ -99,7 +99,7 @@ class Button extends Component {
9999
export default Button;
100100
```
101101
102-
Imagine you want to make the success button uppercase for an specific case . You can include the classname mixed with other classnames:
102+
Imagine you want to make the success button uppercase for a specific case. You can include the classname mixed with other classnames:
103103
104104
```jsx
105105
import React from 'react';
@@ -124,7 +124,7 @@ The final classnames object for the `Button` component would include class value
124124
125125
### Context theming
126126
127-
Although context theming is not limited to ui-kits, it's very useful to avoid declaring hoc for every component. For example, in [react-toolbox](www.react-toolbox.com), you can define a context theme like:
127+
Although context theming is not limited to ui-kits, it's very useful to avoid declaring hoc for every component. For example, in [react-toolbox](http://www.react-toolbox.com), you can define a context theme like:
128128
129129
```jsx
130130
import React from 'react';
@@ -169,9 +169,9 @@ The returned component accepts a `theme` and `composeTheme` apart from the prop
169169

170170
## About
171171

172-
The project is originally authored by [Javi Velasco](www.javivelasco.com) as an effort of providing a better customization experience for [React Toolbox](www.react-toolbox.com). Any comments, improvements or feedback is highly appreciated.
172+
The project is originally authored by [Javi Velasco](http://www.javivelasco.com) as an effort of providing a better customization experience for [React Toolbox](http://www.react-toolbox.com). Any comments, improvements or feedback is highly appreciated.
173173

174-
Thanks to [Nik Graf](www.twitter.com/nikgraf) and [Mark Dalgleish](www.twitter.com/markdalgleish) for their thoughts about theming and customization for React components.
174+
Thanks to [Nik Graf](http://www.twitter.com/nikgraf) and [Mark Dalgleish](http://www.twitter.com/markdalgleish) for their thoughts about theming and customization for React components.
175175

176176
## License
177177

0 commit comments

Comments
 (0)