Skip to content

Commit 6c5ef03

Browse files
committed
typos
1 parent 17d950d commit 6c5ef03

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

protocol_doc/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ interactive queries.
232232

233233
Xexport 2 400 200
234234

235-
- **SQL Queries**: They always start with a lower-case `s` and must end with a `;` colon.
235+
- **SQL Queries**: They always start with a lower-case `s` and must end with a `;` semi-colon.
236236
With SQL queries you can either create, update, modify or delete data, modify the
237237
database schema, etc. or you can also set session properties, like the time zone.<br><br>
238238
Configure automatic conversion for date-time values in the current session:
@@ -299,7 +299,7 @@ While the ampersand (&) character is the first, it is followed by a number from
299299
### 5.2.1. Data response - **&1**
300300

301301
This is a response for a select query. For example let's see the response for query:
302-
(Don't forget that all queries have to start with an `s` character and end with a colon `;`.)
302+
(Don't forget that all queries have to start with an `s` character and end with a semi-colon `;`.)
303303

304304
sselect
305305
"category",
@@ -614,7 +614,7 @@ the first line of the [data response](#521-data-response---1).
614614
## 6.4. Multiple queries in a single message
615615

616616
You can send multiple SQL queries in a single message, separated by
617-
colon `;` characters:
617+
semi-colon `;` characters:
618618

619619
sSET SCHEMA mySchema; update table cats set name='asd';
620620
insert into myTable (value1, value2) values (1, 2);

0 commit comments

Comments
 (0)