Skip to content

Commit ecf2d31

Browse files
author
Vlad Balin
committed
Update README.md
1 parent 8016160 commit ecf2d31

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It allows you:
1111
Thus, no refactoring of your application is required. You can start writing UI with React immediately replacing your Backbone Views one-by-one, while keeping your existing models.
1212

1313
This extension works with raw Backbone. However, in order to take full advantage of React/Backbone
14-
architecture you are encouraged to upgrade to Backbone.NestedTypes. It will give you following
14+
architecture you are encouraged to upgrade to `Backbone.NestedTypes`. It will give you following
1515
features to help managing complex application state:
1616

1717
- Proper nested models and collections implementation with deep changes detection. React components will
@@ -25,12 +25,12 @@ and
2525
https://github.com/Volicon/backbone.nestedTypes
2626

2727
# Usage
28-
It's packed as single UMD, thus grab the module which is appropriate for you. So far, there are two of them, one for raw backbone, and one for backbone.nestedTypes.
28+
It's packed as single UMD, thus grab the module which is appropriate for you. So far, there are two of them, one for raw backbone, and one for `backbone.nestedTypes`.
2929

3030
First one depends on `react` and `backbone`, so if you're using Chaplin or Marionette you will
3131
probably need to pass appropriate module instead of `backbone`. Don't hesitate to replace module name in the beginning of the file, or use raw factory function from `src/glue.js`.
3232

33-
If you're using NestedTypes, you need NestedTypes to require appropriate framework. Report a bug if something goes wrong, we like when someone share our passion for technology and quite fast in response.
33+
If you're using `NestedTypes`, you need `NestedTypes` to require appropriate framework. Report a bug if something goes wrong, we like when someone share our passion for technology and quite fast in response.
3434

3535
# Features
3636
## Use React components as Backbone View
@@ -110,7 +110,7 @@ var MyComponent = React.createClass({
110110
- New Model definition will be created, using `attributes` as Model.defaults.
111111
- If Model property is specified, it will be used as base model and extended.
112112
- `attributes` property from mixins will be properly merged.
113-
- if you're using Backbone.NestedTypes models, it's far superior to react state in every aspect. It handles updates much faster, it detects nested elements changes, and it has type specs for state elements in a way like react's propTypes.
113+
- if you're using `Backbone.NestedTypes` models, it's far superior to react state in every aspect. It handles updates much faster, it detects nested elements changes, and it has type specs for state elements in a way like react's `propTypes`.
114114

115115
## Passing Backbone objects as React components props
116116
```javscript

0 commit comments

Comments
 (0)