Skip to content

Commit bd03d95

Browse files
author
Moriyoshi Koizumi
committed
Fix doc.
1 parent b8aae10 commit bd03d95

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is a plugin implementation of [XOAUTH2](https://developers.google.com/gmail/xoauth2_protocol).
44

5-
## Build and installation
5+
## Building and installation
66

77
```
88
./autogen.sh
@@ -95,8 +95,7 @@ BEGIN TRANSACTION;
9595
CREATE TABLE users (id INTEGER PRIMARY KEY, name VARCHAR, password VARCHAR, realm VARCHAR);
9696
INSERT INTO "users" VALUES(1,'test','test','example.com');
9797
CREATE TABLE props (id INTEGER PRIMARY KEY, user_id INTEGER, name VARCHAR, value VARCHAR, FOREIGN KEY (user_id) REFERENCES users (id));
98-
INSERT INTO "props" VALUES(1,1,'test','test');
99-
INSERT INTO "props" VALUES(2,1,'userPassword','*');
100-
INSERT INTO "props" VALUES(3,1,'oauth2BearerTokens','token');
98+
INSERT INTO "props" VALUES(1,1,'userPassword','*');
99+
INSERT INTO "props" VALUES(2,1,'oauth2BearerTokens','token');
101100
COMMIT;
102101
```

0 commit comments

Comments
 (0)