Skip to content

Commit c099a7e

Browse files
committed
Fixed some spelling / grammar in README.md
1 parent df60f03 commit c099a7e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# Mysql2 - A modern, simple and very fast Mysql library for Ruby - binding to libmysql
1+
# Mysql2 - A modern, simple and very fast MySQL library for Ruby - binding to libmysql
22

33
[![Build Status](https://travis-ci.org/brianmario/mysql2.png)](https://travis-ci.org/brianmario/mysql2)
44

55
The Mysql2 gem is meant to serve the extremely common use-case of connecting, querying and iterating on results.
6-
Some database libraries out there serve as direct 1:1 mappings of the already complex C API's available.
6+
Some database libraries out there serve as direct 1:1 mappings of the already complex C APIs available.
77
This one is not.
88

99
It also forces the use of UTF-8 [or binary] for the connection [and all strings in 1.9, unless Encoding.default_internal is set then it'll convert from UTF-8 to that encoding] and uses encoding-aware MySQL API calls where it can.
1010

1111
The API consists of two classes:
1212

13-
`Mysql2::Client` - your connection to the database
13+
`Mysql2::Client` - your connection to the database.
1414

1515
`Mysql2::Result` - returned from issuing a #query on the connection. It includes Enumerable.
1616

@@ -26,7 +26,7 @@ By default, the mysql2 gem will try to find a copy of MySQL in this order:
2626

2727
* Option `--with-mysql-dir`, if provided (see below).
2828
* Option `--with-mysql-config`, if provided (see below).
29-
* Several typical paths for `msyql_config` (default for the majority of users).
29+
* Several typical paths for `mysql_config` (default for the majority of users).
3030
* The directory `/usr/local`.
3131

3232
### Configuration options

0 commit comments

Comments
 (0)