From 806ef3760e132f6258c3cb3520d4817a8736c459 Mon Sep 17 00:00:00 2001 From: Sam Stagg Date: Thu, 11 Feb 2016 15:05:13 +0000 Subject: [PATCH] Spelling of "retrieve" corrected --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a1f0f4b..55c3df6 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ pusher.FetchStateForChannelsAsync((IGetResult result #### Fetch channel information -Retrive information about a single channel: +Retrieve information about a single channel: ``` IGetResult result = pusher.Get("/channels/my_channel" ); @@ -142,7 +142,7 @@ pusher.FetchStateForChannelAsync("my_channel", (ITriggerResult result) = }); ``` -Retrive information about multiple channels: +Retrieve information about multiple channels: ``` IGetResult result = pusher.FetchStateForChannels(); @@ -159,7 +159,7 @@ pusher.FetchStateForChannelsAsync((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 result = pusher.FetchUsersFromPresence("/channels/presence-channel/users" );