Skip to content

Commit 42d5beb

Browse files
committed
Fix build warnings
1 parent f3bfd87 commit 42d5beb

File tree

6 files changed

+8
-178
lines changed

6 files changed

+8
-178
lines changed

doc/book/replication/repl_sync.rst

Lines changed: 0 additions & 171 deletions
This file was deleted.

doc/dev_guide/internals/replication/orphan.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.. _internals-replication-orphan_status:
2+
.. _replication-orphan_status:
23

34
Orphan status
45
=============

doc/reference/reference_lua/datetime/datetime_object.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _datetime_object:
1+
.. _datetime_obj:
22

33
datetime_object
44
===============
@@ -249,7 +249,7 @@ datetime_object
249249

250250
Modify an existing datetime object by adding values of the input argument.
251251

252-
:param table input: an :ref:`interval object <interval-new>` or an equivalent table (see **Example #1**)
252+
:param table input: an :ref:`interval object <interval_obj>` or an equivalent table (see **Example #1**)
253253
:param string adjust: defines how to round days in a month after an arithmetic operation.
254254
Possible values: ``none``, ``last``, ``excess`` (see **Example #2**). Defaults to ``none``.
255255

@@ -340,7 +340,7 @@ datetime_object
340340

341341
Modify an existing datetime object by subtracting values of the input argument.
342342

343-
:param table input: an :ref:`interval object <interval-new>` or an equivalent table (see **Example**)
343+
:param table input: an :ref:`interval object <interval_obj>` or an equivalent table (see **Example**)
344344
:param string adjust: defines how to round days in a month after an arithmetic operation.
345345
Possible values: ``none``, ``last``, ``excess``. Defaults to ``none``.
346346
The logic is similar to the one of the ``:add()`` method -- see :ref:`Example #2 <datetime-add-example2>`.

doc/reference/reference_lua/datetime/interval_object.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.. _inverval_object:
1+
.. _interval_obj:
22

3-
inverval_object
3+
interval_object
44
===============
55

66
.. class:: interval_object

doc/reference/reference_lua/datetime/new.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ datetime.new()
1313
:param table units: Table of :ref:`time units <datetime-new-args>`.
1414
If an empty table or no arguments are passed, the ``datetime`` object with the default values corresponding to Unix Epoch is created: ``1970-01-01T00:00:00Z``.
1515

16-
:return: :doc:`datetime object <./datetime/datetime_object>`
16+
:return: :ref:`datetime object <datetime_obj>`
1717
:rtype: cdata
1818

1919
.. _datetime-new-args:

doc/release/1.7.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Incompatible changes:
4444
Please update your client libraries if you plan to use these new features
4545
(:tarantool-issue:`2802`).
4646
* :ref:`fiber_name() <fiber_object-name_get>` now raises an exception instead of truncating long fiber names.
47-
We found that some Lua modules such as :ref:`expirationd <expirationd-module>` use ``fiber.name()``
47+
We found that some Lua modules such as `expirationd <https://tarantool.github.io/expirationd/>`_ use ``fiber.name()``
4848
as a key to identify background tasks. If a name is truncated, this fact was
4949
silently missed. The new behavior allows to detect bugs caused by ``fiber.name()``
5050
truncation. Please use ``fiber.name(name, { truncate = true })`` to emulate

0 commit comments

Comments
 (0)