Skip to content

Commit 6104bff

Browse files
committed
Fix broken Markdown headings
1 parent b02a8f7 commit 6104bff

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ context_request.delete() # will remove all context in session
153153

154154
```
155155

156-
#Timeouts
156+
# Timeouts
157157
**ApiAiRuby::Client** uses the [http gem](https://github.com/httprb/http) under the hood. You can use ```timeout_options``` on the client to set these.
158158
```ruby
159159
ApiAiRuby::Client.new(
@@ -169,27 +169,27 @@ ApiAiRuby::Client.new(
169169
Please see the [httprb wiki on timeouts](https://github.com/httprb/http/wiki/Timeouts) for more information.
170170

171171

172-
#Error handling
172+
# Error handling
173173
**ApiAiRuby::Client** currently able to raise two kind of errors: **ApiAiRuby::ClientError** (due to configuration mismatch) and **ApiAiRuby::RequestError** in case of something goes wrong during request. For both kind of errors you can get **error.message** (as usual) and **ApiAiRuby::RequestError** can additionally give you code of server error (you can get it with **error.code**)
174174

175175

176-
#Changelog
176+
# Changelog
177177

178-
##2.0.0
179-
###Breaking:
178+
## 2.0.0
179+
### Breaking:
180180
- http gem dependency updated to 2.0, it does no longer raise `Errno::ETIMEDOUT`. Thanks to @tak1n
181181

182-
##1.3.0
182+
## 1.3.0
183183

184-
###Non-breaking:
184+
### Non-breaking:
185185
- contexts endpoint support (https://docs.api.ai/docs/contexts)
186186
- better RDoc
187187

188-
###Breaking:
188+
### Breaking:
189189
- ApiAiRuby::Client::user_entities_request renamed to ApiAiRuby::Client::create_user_entities_request
190190
- ApiAiRuby::Entity::addEntry renamed to ApiAiRuby::Entity::add_entry
191191

192-
##Previous
192+
## Previous
193193
* 1.2.3 - events support
194194
* 1.2.2 - added configurable timeouts for requests (thanks [bramski](https://github.com/bramski))
195195
* 1.2.1 - fixed UTF-8 in text-requests

0 commit comments

Comments
 (0)