Skip to content

Commit f30486c

Browse files
readme: fix broken link to space.update doc
Anchor link [1] not works anymore and redirects to the main page [2] instead of space.update page. 1. https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/#box-space-update 2. https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/
1 parent 112d361 commit f30486c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ where:
220220

221221
* `space_name` (`string`) - name of the space
222222
* `key` (`any`) - primary key value
223-
* `operations` (`table`) - update [operations](https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/#box-space-update)
223+
* `operations` (`table`) - update [operations](https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/update/)
224224
* `opts`:
225225
* `timeout` (`?number`) - `vshard.call` timeout (in seconds)
226226
* `bucket_id` (`?number|cdata`) - bucket ID
@@ -334,7 +334,7 @@ where:
334334

335335
* `space_name` (`string`) - name of the space
336336
* `tuple` / `object` (`table`) - tuple/object to insert if there is no existing tuple which matches the key fields
337-
* `operations` (`table`) - update [operations](https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/#box-space-update) if there is an existing tuple which matches the key fields of tuple
337+
* `operations` (`table`) - update [operations](https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/update/) if there is an existing tuple which matches the key fields of tuple
338338
* `opts`:
339339
* `timeout` (`?number`) - `vshard.call` timeout (in seconds)
340340
* `bucket_id` (`?number|cdata`) - bucket ID
@@ -409,7 +409,7 @@ Returns metadata and array of rows, error.
409409
#### Select conditions
410410

411411
Select conditions are very similar to Tarantool update
412-
[operations](https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/#box-space-update).
412+
[operations](https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/update/).
413413

414414
Each condition is a table `{operator, field-identifier, value}`:
415415

0 commit comments

Comments
 (0)