Skip to content

Commit

Permalink
Fix lots of typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mattheworiordan committed Jan 3, 2017
1 parent 1d7eb2d commit 369b441
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 26 deletions.
18 changes: 9 additions & 9 deletions content/client-lib-development-guide/features.textile

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content/client-lib-development-guide/index.textile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ See the current version of the "Ably realtime protocol definition":/client-lib-d

h3. REST API definition

See the "Ably REST API definition":/rest-api which can be considered stable and not subject to change without the introduction of a versioning systme.
See the "Ably REST API definition":/rest-api which can be considered stable and not subject to change without the introduction of a versioning system.

h3. Encryption

Expand Down
20 changes: 10 additions & 10 deletions content/client-lib-development-guide/versions/v0.8/features.textile

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content/realtime/connection.textile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ realtime.connection.on(.Connected) { change in
print("Connected, that was easy")
}

<span lang="ruby">Note that all examples on this page assume you are runnining them within an EventMachine reactor. Find out more in our "Realtime usage documentation":/realtime/usage.</span>
<span lang="ruby">Note that all examples on this page assume you are running them within an EventMachine reactor. Find out more in our "Realtime usage documentation":/realtime/usage.</span>

h2(#connection-state-explained). Connection state explained

Expand Down
2 changes: 1 addition & 1 deletion content/realtime/encryption.textile
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ h2(#getting-started). Getting started
channel.publish("unencrypted", data: "encrypted secret payload")
```

<span lang="ruby">Note that all examples on this page assume you are runnining them within an EventMachine reactor. Find out more in our "Realtime usage documentation":/realtime/usage.</span>
<span lang="ruby">Note that all examples on this page assume you are running them within an EventMachine reactor. Find out more in our "Realtime usage documentation":/realtime/usage.</span>

Note that the @key@ should not be a pass-phrase, but a cryptographic key - generated from a secure random source, 128 or 256 bits long, binary or base64-encoded. If you wish to encrypt messages with a pass-phrase (for example, one entered by a user), you should use a "key derivation function":https://en.wikipedia.org/wiki/Key_derivation_function to transform that into a key. The client libraries are also capable of "generating a random key":#generate-random-key for you.

Expand Down
2 changes: 1 addition & 1 deletion content/realtime/history.textile
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ channel.publish("example", data: "message data") { error in
}
```

<span lang="ruby">Note that all examples on this page assume you are runnining them within an EventMachine reactor. Find out more in our "Realtime usage documentation":/realtime/usage.</span>
<span lang="ruby">Note that all examples on this page assume you are running them within an EventMachine reactor. Find out more in our "Realtime usage documentation":/realtime/usage.</span>

If you would prefer to just dive into code and see some examples of how to use history via the Realtime API, then we recommend you take a look at our "Realtime tutorials":/tutorials.

Expand Down
2 changes: 1 addition & 1 deletion content/realtime/presence.textile
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ The @Presence@ object provides a straightforward API to subscribe to presence ev
channel.presence.enter(nil)
```

<span lang="ruby">Note that all examples on this page assume you are runnining them within an EventMachine reactor. Find out more in our "Realtime usage documentation":/realtime/usage.</span>
<span lang="ruby">Note that all examples on this page assume you are running them within an EventMachine reactor. Find out more in our "Realtime usage documentation":/realtime/usage.</span>

If you would prefer to just dive into code and see some examples of how to use presence via the Realtime API, then we recommend you take a look at our "Realtime tutorials":/tutorials.

Expand Down
2 changes: 1 addition & 1 deletion content/realtime/statistics.textile
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ try! realtime.stats(query) { results, error in
}
```

<span lang="ruby">Note that all examples on this page assume you are runnining them within an EventMachine reactor. Find out more in our "Realtime usage documentation":/realtime/usage.</span>
<span lang="ruby">Note that all examples on this page assume you are running them within an EventMachine reactor. Find out more in our "Realtime usage documentation":/realtime/usage.</span>

h1. Realtime API Reference

Expand Down
2 changes: 1 addition & 1 deletion content/tutorials/history.textile
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ blang[swift].

To read more about using @UITableView@ visit "Apple developer guide":https://developer.apple.com/library/content/referencelibrary/GettingStarted/DevelopiOSAppsSwift/Lesson7.html

Now add another @UIButton@ and bind it to an action named "retriveHistoryAction".
Now add another @UIButton@ and bind it to an action named "retrieveHistoryAction".
Add this code to previously added @IBAction@:

```[swift]
Expand Down

0 comments on commit 369b441

Please sign in to comment.