Skip to content

Commit 5c8e3d9

Browse files
authored
Fixing broken links in doc files (#112)
1 parent 8c4d5ed commit 5c8e3d9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ crud.select('customers', {{'<=', 'age', 35}})
347347
**Note**: tuples are sorted by age because space has index `age`.
348348
Otherwise, tuples are sorted by primary key.
349349

350-
See more examples of select queries [here.](https://github.com/tarantool/crud/docs/select.md)
350+
See more examples of select queries [here.](https://github.com/tarantool/crud/blob/master/doc/select.md)
351351

352352
### Pairs
353353

@@ -372,7 +372,7 @@ for _, object in crud.pairs('customers', {{'<=', 'age', 35}}, {use_tomap = true}
372372
end
373373
```
374374

375-
See more examples of pairs queries [here.](https://github.com/tarantool/crud/docs/pairs.md)
375+
See more examples of pairs queries [here.](https://github.com/tarantool/crud/blob/master/doc/pairs.md)
376376

377377
### Truncate
378378

doc/pairs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Pairs examples
22

33
With ``crud.pairs``, you can iterate across a distributed space.
4-
The arguments are the same as [``crud.select``](https://github.com/tarantool/crud/docs/select.md), except of the ``use_tomap`` parameter.
4+
The arguments are the same as [``crud.select``](https://github.com/tarantool/crud/blob/master/doc/select.md), except of the ``use_tomap`` parameter.
55
Below are examples that may help you.
66

77
## Getting space
@@ -76,7 +76,7 @@ objects
7676

7777
## Pagination
7878

79-
``crud.pairs``, like [``crud.select``](https://github.com/tarantool/crud/doc/select#pagination), supports pagination.
79+
``crud.pairs``, like [``crud.select``](https://github.com/tarantool/crud/blob/master/doc/select.md#pagination), supports pagination.
8080
To use it, combine the ``first`` and ``after`` parameters.
8181

8282
**Example:**

doc/select.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ res
209209
...
210210
```
211211

212-
With this request, we got objects behind the objects from the [previous example](https://github.com/tarantool/crud/doc/select#first-parameter)
212+
With this request, we got objects behind the objects from the [previous example](https://github.com/tarantool/crud/blob/master/doc/select.md#first-parameter)
213213

214214
### Combine ``first`` and ``after``
215215

0 commit comments

Comments
 (0)