Skip to content

Commit 4727a29

Browse files
authored
Merge pull request #631 from ankane/typos
Fix typos
2 parents 782653e + b0b8ad5 commit 4727a29

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The `@connection` instance variable on the `Statement` handle keeps the database
1919
connection alive.
2020

2121
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
2323
`Database` object will immediately behave as though it's been fully closed. If a Database is not
2424
explicitly closed, it will be closed when it is GCed.
2525

ext/sqlite3/aggregator.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
*

test/test_database.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)