File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -614,7 +614,7 @@ You can opt-out of the packaged version of sqlite (and use your system-installed
614614
615615## 1.4.1
616616
617- * Don't mandate dl functions for the extention build
617+ * Don't mandate dl functions for the extension build
618618* bumping version
619619
620620
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ The `@connection` instance variable on the `Statement` handle keeps the database
1919connection alive.
2020
2121We use ` sqlite3_close_v2 ` in ` Database#close ` since v2.1.0 which defers _ actually_ closing the
22- connection and freeing the underlying memory until all open statments are closed; though the
22+ connection and freeing the underlying memory until all open statements are closed; though the
2323` Database ` object will immediately behave as though it's been fully closed. If a Database is not
2424explicitly closed, it will be closed when it is GCed.
2525
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ rb_sqlite3_aggregate_instance(sqlite3_context *ctx)
6060 VALUE * inst_ptr = sqlite3_aggregate_context (ctx , (int )sizeof (VALUE ));
6161
6262 if (!inst_ptr ) {
63- rb_fatal ("SQLite is out-of-merory " );
63+ rb_fatal ("SQLite is out-of-memory " );
6464 }
6565
6666 inst = * inst_ptr ;
@@ -174,7 +174,7 @@ rb_sqlite3_aggregator_final(sqlite3_context *ctx)
174174
175175/* call-seq: define_aggregator2(aggregator)
176176 *
177- * Define an aggregrate function according to a factory object (the "handler")
177+ * Define an aggregate function according to a factory object (the "handler")
178178 * that knows how to obtain to all the information. The handler must provide
179179 * the following class methods:
180180 *
Original file line number Diff line number Diff line change @@ -537,7 +537,7 @@ def test_define_function_closed
537537 end
538538 end
539539
540- def test_inerrupt_closed
540+ def test_interrupt_closed
541541 @db . close
542542 assert_raise ( SQLite3 ::Exception ) do
543543 @db . interrupt
You can’t perform that action at this time.
0 commit comments