Skip to content

Commit 7eafd1e

Browse files
andreyaksenovDifferentialOrange
authored andcommitted
Used tt instead of tarantoolctl in usage instructions.
Part of tarantool/doc#3730
1 parent 5345747 commit 7eafd1e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -47,30 +47,30 @@ It also provides the `crud-storage` and `crud-router` roles for
4747

4848
First, [install Tarantool](https://www.tarantool.io/en/download).
4949

50-
Now you have the following options how to learn crud API and use it in a
50+
Now you have the following options for learning the crud API and using it in a
5151
project:
5252

53-
* Play with crud on a testing dataset on a single instance:
53+
* Play with crud on a test dataset on a single instance:
5454

5555
```shell
5656
$ git clone https://github.com/tarantool/crud.git
5757
$ cd crud
58-
$ tarantoolctl rocks make
58+
$ tt rocks make
5959
$ ./doc/playground.lua
6060
tarantool> crud.select('customers', {{'<=', 'age', 35}}, {first = 10})
6161
tarantool> crud.select('developers', nil, {first = 6})
6262
```
63-
* Install crud into a current directory:
63+
* Install crud into the current directory:
6464

6565
```shell
66-
$ tarantoolctl rocks install crud
66+
$ tt rocks install crud
6767
```
6868

6969
And add the [initialization code](#API) to storage and router instance files.
7070
* Add crud into dependencies of a Cartridge application and add crud roles into
7171
dependencies of your roles (see [Cartridge roles](#cartridge-roles) section).
7272
* Add crud into dependencies of your application (rockspec, RPM spec -- depends
73-
of your choice) and call crud initialization code from storage and router
73+
on your choice) and call crud initialization code from storage and router
7474
code (see [API](#api) section).
7575

7676
## API

0 commit comments

Comments
 (0)