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 @@ -609,7 +609,7 @@ You can opt-out of the packaged version of sqlite (and use your system-installed
609
609
610
610
## 1.4.1
611
611
612
- * Don't mandate dl functions for the extention build
612
+ * Don't mandate dl functions for the extension build
613
613
* bumping version
614
614
615
615
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
19
19
connection alive.
20
20
21
21
We 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
23
23
` Database ` object will immediately behave as though it's been fully closed. If a Database is not
24
24
explicitly closed, it will be closed when it is GCed.
25
25
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ rb_sqlite3_aggregate_instance(sqlite3_context *ctx)
60
60
VALUE * inst_ptr = sqlite3_aggregate_context (ctx , (int )sizeof (VALUE ));
61
61
62
62
if (!inst_ptr ) {
63
- rb_fatal ("SQLite is out-of-merory " );
63
+ rb_fatal ("SQLite is out-of-memory " );
64
64
}
65
65
66
66
inst = * inst_ptr ;
@@ -174,7 +174,7 @@ rb_sqlite3_aggregator_final(sqlite3_context *ctx)
174
174
175
175
/* call-seq: define_aggregator2(aggregator)
176
176
*
177
- * Define an aggregrate function according to a factory object (the "handler")
177
+ * Define an aggregate function according to a factory object (the "handler")
178
178
* that knows how to obtain to all the information. The handler must provide
179
179
* the following class methods:
180
180
*
Original file line number Diff line number Diff line change @@ -537,7 +537,7 @@ def test_define_function_closed
537
537
end
538
538
end
539
539
540
- def test_inerrupt_closed
540
+ def test_interrupt_closed
541
541
@db . close
542
542
assert_raise ( SQLite3 ::Exception ) do
543
543
@db . interrupt
You can’t perform that action at this time.
0 commit comments