Skip to content

Commit 998431c

Browse files
committed
doc: convert rdoc files to markdown
1 parent 13bf584 commit 998431c

File tree

6 files changed

+502
-463
lines changed

6 files changed

+502
-463
lines changed

API_CHANGES.rdoc renamed to API_CHANGES.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
= API Changes
1+
# API Changes
22

33
* SQLite3::Database#execute only accepts an array for bind parameters.
44

@@ -8,7 +8,7 @@
88
sometimes important change in behavior.
99

1010
83882d2208ed189361617d5ab8532a325aaf729d
11-
11+
1212
* SQLite3::Database#trace now takes either a block or an object that responds
1313
to "call". The previous implementation passed around a VALUE that was cast
1414
to a void *. This is dangerous because the value could get garbage collected
@@ -30,7 +30,7 @@
3030
* test/test_tc_database.rb was removed because we no longer use the Driver
3131
design pattern.
3232

33-
= Garbage Collection Strategy
33+
# Garbage Collection Strategy
3434

3535
All statements keep pointers back to their respective database connections.
3636
The @connection instance variable on the Statement handle keeps the database
@@ -47,4 +47,3 @@ collected. So, it is possible that a connection and a statement are up for
4747
garbage collection. If the database connection were to be free'd before the
4848
statement, then boom. Instead we'll be conservative and free unclosed
4949
statements when the connection is terminated.
50-

0 commit comments

Comments
 (0)