Skip to content

Commit c4a5f55

Browse files
authored
Fix typo in README (#35)
internaly ==> internally Stirng ==> String disucssion ==> discussion
1 parent b40b150 commit c4a5f55

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ require "sequel"
5959
DB = Sequel.postgres(extensions: :activerecord_connection) # for PostgreSQL
6060
```
6161

62-
Now any Sequel operations that you make will internaly be done using the
62+
Now any Sequel operations that you make will internally be done using the
6363
ActiveRecord connection, so you should see the queries in your ActiveRecord
6464
logs.
6565

6666
```rb
6767
DB.create_table :posts do
6868
primary_key :id
6969
String :title, null: false
70-
Stirng :body, null: false
70+
String :body, null: false
7171
end
7272

7373
DB[:posts].insert(
@@ -258,7 +258,7 @@ $ rake db_teardown_mysql
258258

259259
## Support
260260

261-
Please feel free to raise a new disucssion in [Github issues](https://github.com/janko/sequel-activerecord_connection/discussions), or search amongst the existing questions there.
261+
Please feel free to raise a new discussion in [Github issues](https://github.com/janko/sequel-activerecord_connection/discussions), or search amongst the existing questions there.
262262

263263
## License
264264

0 commit comments

Comments
 (0)