1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Minor English fixes in docs [ci skip]

This commit is contained in:
George Millo 2014-11-17 15:26:33 +07:00
parent 3a804aab95
commit 6f57e1240e
2 changed files with 3 additions and 3 deletions

View file

@ -1011,7 +1011,7 @@ self.default_params = {
}.freeze
```
They can be also accessed and overridden at the instance level.
They can also be accessed and overridden at the instance level.
```ruby
A.x = 1

View file

@ -110,8 +110,8 @@ module Rails
#
# == Endpoint
#
# An engine can be also a rack application. It can be useful if you have a rack application that
# you would like to wrap with +Engine+ and provide some of the +Engine+'s features.
# An engine can also be a rack application. It can be useful if you have a rack application that
# you would like to wrap with +Engine+ and provide with some of the +Engine+'s features.
#
# To do that, use the +endpoint+ method:
#