From 3152e226b2d1d592dde2e2615a420a078f358040 Mon Sep 17 00:00:00 2001 From: Tim Wade Date: Mon, 4 Jan 2016 10:48:54 -0800 Subject: [PATCH] [skip ci] Fix some typos in the README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ed83ad050..f6f007968 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Collections share basic CRUD type operations, such as: * `all` - fetch every object of that type from the provider. * `create` - initialize a new record locally and a remote resource with the provider. -* `get` - fetch a single object by it's identity from the provider. +* `get` - fetch a single object by its identity from the provider. * `new` - initialize a new record locally, but do not create a remote resource with the provider. As an example, we'll try initializing and persisting a Rackspace Cloud server: @@ -95,9 +95,9 @@ Many of the collection methods return individual objects, which also provide com ## Mocks -As you might imagine, testing code using Fog can be slow and expensive, constantly turning on and and shutting down instances. -Mocking allows skipping this overhead by providing an in memory representation resources as you make requests. -Enabling mocking easy to use, before you run other commands, simply run: +As you might imagine, testing code using Fog can be slow and expensive, constantly turning on and shutting down instances. +Mocking allows skipping this overhead by providing an in memory representation of resources as you make requests. +Enabling mocking is easy to use: before you run other commands, simply run: ```ruby Fog.mock!