Skip to content

Commit 7c09f2e

Browse files
committed
Fix typos in README
1 parent b3a63fe commit 7c09f2e

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# sqlite3-uuid
22

3-
[![Build Status](https://travis-ci.org/benwebber/sqlite3-uuid.svg?branch=master)](https://travis-ci.org/benwebber/sqlite3-uuid)
43
[![codecov](https://codecov.io/gh/benwebber/sqlite3-uuid/branch/master/graph/badge.svg)](https://codecov.io/gh/benwebber/sqlite3-uuid)
54

65
This SQLite extension implements functions for creating [RFC 4122](https://www.ietf.org/rfc/rfc4122.txt) compliant UUIDs.
@@ -27,7 +26,7 @@ This SQLite extension implements functions for creating [RFC 4122](https://www.i
2726
make
2827
```
2928
30-
2. Load the extension using your SQLite API of choice. For example, in Python,
29+
3. Load the extension using your SQLite API of choice. For example, in Python,
3130
3231
```python
3332
import sqlite3
@@ -76,7 +75,7 @@ SELECT uuid4();
7675
Generate a version 5 (SHA1) namespace UUID.
7776

7877
```
79-
SELECT uuid3(uuid_ns_dns(), 'example.org');
78+
SELECT uuid5(uuid_ns_dns(), 'example.org');
8079
aad03681-8b63-5304-89e0-8ca8f49461b5
8180
```
8281

@@ -133,7 +132,7 @@ sqlite3 -cmd '.load uuid' uuid.db 'SELECT uuid_to_blob("3dfe5c62-e543-46ff-a2e0-
133132
00000010
134133
```
135134

136-
### `uuid_to_text()`
135+
#### `uuid_to_text()`
137136

138137
Convert a 16-byte BLOB to a TEXT UUID.
139138

0 commit comments

Comments
 (0)