diff options
| author | 2021-01-26 00:37:21 +0100 | |
|---|---|---|
| committer | 2021-01-26 00:37:21 +0100 | |
| commit | aa78eb0511e0d1b053050c378fbe801b46e8445a (patch) | |
| tree | cb7b7a578f08e2ef9f60f60b02b85394a2fc652e /README.md | |
| parent | fix typo in readme (diff) | |
| download | zig-sqlite-aa78eb0511e0d1b053050c378fbe801b46e8445a.tar.gz zig-sqlite-aa78eb0511e0d1b053050c378fbe801b46e8445a.tar.xz zig-sqlite-aa78eb0511e0d1b053050c378fbe801b46e8445a.zip | |
keep the same case for 'sqlite' everywhere
Diffstat (limited to '')
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -149,7 +149,7 @@ while (id < 20) : (id += 1) { | |||
| 149 | 149 | ||
| 150 | For queries which return data you have multiple options: | 150 | For queries which return data you have multiple options: |
| 151 | * `Statement.all` which takes an allocator and can allocate memory. | 151 | * `Statement.all` which takes an allocator and can allocate memory. |
| 152 | * `Statement.one` which does not take an allocator and cannot allocate memory (aside from what SQLite allocates itself). | 152 | * `Statement.one` which does not take an allocator and cannot allocate memory (aside from what sqlite allocates itself). |
| 153 | * `Statement.oneAlloc` which takes an allocator and can allocate memory. | 153 | * `Statement.oneAlloc` which takes an allocator and can allocate memory. |
| 154 | 154 | ||
| 155 | ### Type parameter | 155 | ### Type parameter |