Skip to content

Commit

Permalink
Spelling of "retrieve" corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
ewmy committed Feb 11, 2016
1 parent f65a2dd commit 806ef37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ pusher.FetchStateForChannelsAsync<ChannelsList>((IGetResult<ChannelsList> result

#### Fetch channel information

Retrive information about a single channel:
Retrieve information about a single channel:

```
IGetResult<object> result = pusher.Get<object>("/channels/my_channel" );
Expand All @@ -142,7 +142,7 @@ pusher.FetchStateForChannelAsync<object>("my_channel", (ITriggerResult result) =
});
```

Retrive information about multiple channels:
Retrieve information about multiple channels:

```
IGetResult<object> result = pusher.FetchStateForChannels<object>();
Expand All @@ -159,7 +159,7 @@ pusher.FetchStateForChannelsAsync<object>((ITriggerResult result) =>
#### Fetch a list of users on a presence channel
Retrive a list of users that are on a presence channel:
Retrieve a list of users that are on a presence channel:
```
IGetResult<object> result = pusher.FetchUsersFromPresence<object>("/channels/presence-channel/users" );
Expand Down

0 comments on commit 806ef37

Please sign in to comment.