Skip to content

Commit 5cd94da

Browse files
committed
fixes gh-1751 fix typos in connecting from your favorite language
1 parent 21731d2 commit 5cd94da

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/getting_started/getting_started_go.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ to ``Update``, but creates a new tuple if the old one was not found.
176176
177177
resp, err = conn.Upsert("tester", []interface{}{4, "Another band", 2000}, []interface{}{[]interface{}{"+", 2, 5}})
178178
179-
This increases by 5 the value of the third field in the tuple with ``id`` = 4, -- or
179+
This increases by 5 the value of the third field in the tuple with ``id`` = 4 or
180180
inserts the tuple ``(4, "Another band", 2000)`` if a tuple with this ``id``
181181
doesn't exist.
182182

doc/getting_started/getting_started_php.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ to ``update``, but creates a new tuple if the old one was not found.
196196
197197
$tester->upsert([4, 'Another band', 2000], Operations::add(2, 5));
198198
199-
This increases by 5 the value of field ``2`` in the tuple with ``id`` = 4, -- or
199+
This increases by 5 the value of field ``2`` in the tuple with ``id`` = 4 or
200200
inserts the tuple ``(4, "Another band", 2000)`` if a tuple with this ``id``
201201
doesn't exist.
202202

doc/getting_started/getting_started_python.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ to ``update``, but creates a new tuple if the old one was not found.
173173
174174
>>> tester.upsert((4, 'Another band', 2000), [('+', 2, 5)])
175175
176-
This increases by 5 the value of field ``2`` in the tuple with ``id`` = 4, -- or
176+
This increases by 5 the value of field ``2`` in the tuple with ``id`` = 4 or
177177
inserts the tuple ``(4, "Another band", 2000)`` if a tuple with this ``id``
178178
doesn't exist.
179179

0 commit comments

Comments
 (0)