Skip to content

Commit 02cd190

Browse files
committed
README tweaks
1 parent 1d01042 commit 02cd190

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ gem install twingly-search
1616
Or add to your application's [Gemfile](http://bundler.io/gemfile.html) and then run `bundle`
1717

1818
```ruby
19-
gem 'twingly-search'
19+
gem "twingly-search"
2020
```
2121

2222
## Usage
2323

2424
```ruby
25-
require 'twingly/search'
25+
require "twingly/search"
2626

2727
client = Twingly::Search::Client.new do |client|
2828
client.user_agent = "MyCompany/1.0"
2929
end
3030

3131
query = client.query do |query|
32-
query.pattern = 'github page-size:10'
33-
query.language = 'sv'
32+
query.pattern = "github page-size:10"
33+
query.language = "sv"
3434
end
3535

3636
result = query.execute
@@ -42,11 +42,11 @@ The `twingly-search` gem talks to a commercial blog search API and requires an A
4242

4343
Example code can be found in [examples/](examples/).
4444

45-
Too learn more about the capabilities of this API you should read the [Twingly Search API documentation](https://developer.twingly.com/resources/search/).
45+
To learn more about the capabilities of the API, please read the [Twingly Search API documentation](https://developer.twingly.com/resources/search/).
4646

4747
## Requirements
4848

49-
* API key, contact sales@twingly.com to get one
49+
* API key, contact sales@twingly.com via [twingly.com](http://www.twingly.com/try-for-free/) to get one
5050
* Ruby
5151
* Ruby 1.9, 2.0, 2.1, 2.2
5252
* JRuby 9000

0 commit comments

Comments
 (0)