Skip to content

Commit 6323ad0

Browse files
authored
Merge pull request ruby-grape#1856 from hmuar/fix-minor-README
Minor cleanup to README.md in a few places
2 parents 4c20928 + d6fcf85 commit 6323ad0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ Assuming that the post and comment endpoints are mounted in `/posts` and `/comme
400400

401401
### Mount Configuration
402402

403-
You can configure remountable endpoints for small details changing according to where they are mounted.
403+
You can configure remountable endpoints to change small details according to where they are mounted.
404404

405405
```ruby
406406
class Voting::API < Grape::API
@@ -551,15 +551,15 @@ Currently the configurable settings are:
551551

552552
* `param_builder`: Sets the [Parameter Builder](#parameters), defaults to `Grape::Extensions::ActiveSupport::HashWithIndifferentAccess::ParamBuilder`.
553553

554-
To change a setting value make sure that at some point on load time the code the following code runs
554+
To change a setting value make sure that at some point during load time the following code runs
555555

556556
```ruby
557557
Grape.configure do |config|
558558
config.setting = value
559559
end
560560
```
561561

562-
For example, for the `param_builder`, the following code could run in an initializers:
562+
For example, for the `param_builder`, the following code could run in an initializer:
563563

564564
```ruby
565565
Grape.configure do |config|

0 commit comments

Comments
 (0)