Skip to content

Commit 81a5b42

Browse files
committed
Do not say 'simply' - Jim
1 parent 1a8595d commit 81a5b42

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ This library supports end to end encryption of your private channels. This means
179179

180180
### Google App Engine
181181

182-
As of version 1.0.0, this library is compatible with Google App Engine's urlfetch library. Simply pass in the HTTP client returned by `urlfetch.Client` to your Pusher Channels initialization struct.
182+
As of version 1.0.0, this library is compatible with Google App Engine's urlfetch library. Pass in the HTTP client returned by `urlfetch.Client` to your Pusher Channels initialization struct.
183183

184184
```go
185185
package helloworldapp
@@ -624,8 +624,6 @@ Feel more than free to fork this repo, improve it in any way you'd prefer, and s
624624

625625
### Running the tests
626626

627-
Simply type:
628-
629627
```sh
630628
$ go test
631629
```

doc.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ credentials for your app.
1111
1212
Getting Started
1313
14-
To create a new client, simply pass in your application credentials to a `pusher.Client` struct:
14+
To create a new client, pass in your application credentials to a `pusher.Client` struct:
1515
1616
pusherClient := pusher.Client{
1717
AppID: "your_app_id",
1818
Key: "your_app_key",
1919
Secret: "your_app_secret",
2020
}
2121
22-
To start triggering events on a channel, we simply call `pusherClient.Trigger`:
22+
To start triggering events on a channel, we call `pusherClient.Trigger`:
2323
2424
data := map[string]string{"message": "hello world"}
2525

0 commit comments

Comments
 (0)