From d6fcf853947be5d38d4b2df8434f8ed3dc0cd06b Mon Sep 17 00:00:00 2001 From: Hemu Arumugam Date: Tue, 29 Jan 2019 16:36:08 -0800 Subject: [PATCH] Minor cleanup to README.md in a few places --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 527994c3a..c8727e3d4 100644 --- a/README.md +++ b/README.md @@ -400,7 +400,7 @@ Assuming that the post and comment endpoints are mounted in `/posts` and `/comme ### Mount Configuration -You can configure remountable endpoints for small details changing according to where they are mounted. +You can configure remountable endpoints to change small details according to where they are mounted. ```ruby class Voting::API < Grape::API @@ -551,7 +551,7 @@ Currently the configurable settings are: * `param_builder`: Sets the [Parameter Builder](#parameters), defaults to `Grape::Extensions::ActiveSupport::HashWithIndifferentAccess::ParamBuilder`. -To change a setting value make sure that at some point on load time the code the following code runs +To change a setting value make sure that at some point during load time the following code runs ```ruby Grape.configure do |config| @@ -559,7 +559,7 @@ Grape.configure do |config| end ``` -For example, for the `param_builder`, the following code could run in an initializers: +For example, for the `param_builder`, the following code could run in an initializer: ```ruby Grape.configure do |config|