Skip to content

Commit ec36b1f

Browse files
committed
couple more formatting updates
1 parent cfd2781 commit ec36b1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Both options only allow two values - `:local` or `:utc` - with the exception tha
151151

152152
### Casting "boolean" columns
153153

154-
You can now tell Mysql2 to cast tinyint(1) fields to boolean values in Ruby with the :cast_booleans option.
154+
You can now tell Mysql2 to cast `tinyint(1)` fields to boolean values in Ruby with the `:cast_booleans` option.
155155

156156
``` ruby
157157
client = Mysql2::Client.new
@@ -160,7 +160,7 @@ result = client.query("SELECT * FROM table_with_boolean_field", :cast_booleans =
160160

161161
### Async
162162

163-
Mysql2::Client takes advantage of the MySQL C API's (undocumented) non-blocking function mysql_send_query for *all* queries.
163+
`Mysql2::Client` takes advantage of the MySQL C API's (undocumented) non-blocking function mysql_send_query for *all* queries.
164164
But, in order to take full advantage of it in your Ruby code, you can do:
165165

166166
``` ruby

0 commit comments

Comments
 (0)