Skip to content

Commit 087ccfa

Browse files
author
Eugene Leonovich
committed
Tweak README
1 parent e6e12c8 commit 087ccfa

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ queue = require('queue')
3232
queue.create_tube('foobar', 'fifottl', {if_not_exists=true})
3333
```
3434

35-
> You can read more about the box configuration in the official [Tarantool documentation](http://tarantool.org/doc/book/configuration/index.html#initialization-file).
36-
> For more information about the queue configuration check out [queue's README](https://github.com/tarantool/queue/blob/master/README.md).
35+
> *You can read more about the box configuration in the official [Tarantool documentation](http://tarantool.org/doc/book/configuration/index.html#initialization-file).
36+
> For more information about the queue configuration check out [queue's README](https://github.com/tarantool/queue/blob/master/README.md).*
3737
3838
To start the instance you need to copy (or symlink) `queues.lua` file into the `/etc/tarantool/instances.enabled`
3939
directory and run the following command:
@@ -75,9 +75,7 @@ $queue->put(['foo' => ['bar' => ['baz' => null]]]);
7575
$queue->put(new MyObject());
7676
```
7777

78-
> *Note*
79-
>
80-
> Object serialization is only supported when [tarantool/client](https://github.com/tarantool-php/client) is used.
78+
> *Object serialization is only supported when [tarantool/client](https://github.com/tarantool-php/client) is used.*
8179
8280

8381
### Tasks
@@ -117,7 +115,7 @@ $queue->put('bar', [Options::TTL => 5]);
117115
$queue->put('baz', [Options::TTR => 10, Options::PRI => 42]);
118116
```
119117

120-
> See the full list of available options [here](https://github.com/tarantool/queue#queue-types).
118+
> *See the full list of available options [here](https://github.com/tarantool/queue#queue-types).*
121119
122120

123121
### Consumer API
@@ -191,9 +189,9 @@ To delete all tasks in a queue:
191189
$queue->truncate();
192190
```
193191

194-
> For a detailed API documentation, please read the section
195-
"[Using the queue module](https://github.com/tarantool/queue#using-the-queue-module)"
196-
of the [queue's README](https://github.com/tarantool/queue/blob/master/README.md).
192+
> *For a detailed API documentation, please read the section
193+
> "[Using the queue module](https://github.com/tarantool/queue#using-the-queue-module)"
194+
> of the [queue's README](https://github.com/tarantool/queue/blob/master/README.md).*
197195
198196

199197
### Statistics

0 commit comments

Comments
 (0)