Skip to content
This repository was archived by the owner on Oct 19, 2018. It is now read-only.

Commit 3b63649

Browse files
committed
Fixed typos
1 parent 6de8f3e commit 3b63649

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,27 @@ and true React.js engine. :heart:
1313

1414
[**Visit reactrb.org For The Full Story**](https://reactrb.org)
1515

16-
### Important current react.rb gem users please [read this!](#Road-Map)
16+
### Important: current react.rb gem users please [read this!](#road-map)
1717

1818
## Installation
1919

2020
Install the gem, or load the js library
2121

22-
+ add gem 'reactive-ruby' to your gem file or
23-
+ gem install reactive-ruby or
24-
+ install or load via cdn [inline-reactive-ruby](https://github.com/reactive-ruby/inline-reactive-ruby)
22+
+ add `gem 'reactive-ruby'` to your gem file or
23+
+ `gem install reactive-ruby` or
24+
+ install (or load via cdn) [inline-reactive-ruby.js](https://github.com/reactive-ruby/inline-reactive-ruby)
2525

2626
For gem installation its highly recommended to read [the getting started section at reactrb.org](http://reactrb.org/docs/getting-started.html)
2727

2828
## Quick Overview
2929

3030
React.rb components are ruby classes that inherit from `React::Component::Base` or include `React::Component`.
3131

32-
`React::Component` provides a complete DSL to generate html, and event handlers, and has full set of class macros to define states, parameters, and lifecycle callbacks.
32+
`React::Component` provides a complete DSL to generate html and event handlers, and has full set of class macros to define states, parameters, and lifecycle callbacks.
3333

3434
Each react component class has a render method that generates the markup for that component.
3535

36-
Each react component class defines a new **tag** in the DSL that works just like built-in html tags, so react components can render other react components.
36+
Each react component class defines a new tag-method in the DSL that works just like built-in html tags, so react components can render other react components.
3737

3838
As events occur, components update their state, which causes them to rerender, and perhaps pass new parameters to lower level components, thus causing them to rerender.
3939

@@ -50,14 +50,14 @@ React.rb integrates well with Rails, Sinatra, and simple static sites, and can b
5050
+ *Ruby Goodness:* Use all the features of Ruby to create reusable, maintainable UI code
5151
+ *React Simplicity:* Nothing is taken away from the React.js model
5252
+ *Enhanced Features:* Enhanced parameter and state management and other new features
53-
+ *Plays well with Others:* Works with other frameworks, Rails, Sinatra or in static web pages
53+
+ *Plays well with Others:* Works with other frameworks, existing React.js components, Rails, Sinatra or in static web pages
5454

5555
# Problems, Questions, Issues
5656

5757
+ [Stack Overflow](http://stackoverflow.com/questions/tagged/react.rb) tag `react.rb` for specific problems.
5858
+ [Gitter.im](https://gitter.im/zetachang/react.rb) for general questions, discussion, and interactive help.
5959
+ [Github Issues](https://github.com/zetachang/react.rb/issues) for bugs, feature enhancements, etc.
60-
+
60+
6161

6262
# Road Map
6363

0 commit comments

Comments
 (0)