From 0431bc7bca71a1173b27754d100331e62390deb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Thu, 28 Nov 2024 15:54:28 +0100 Subject: [PATCH] Manual: typo and cosmetics [skip ci] --- doc/manual/source/time-series.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/manual/source/time-series.rst b/doc/manual/source/time-series.rst index 15ad73e6e2..2af0796869 100644 --- a/doc/manual/source/time-series.rst +++ b/doc/manual/source/time-series.rst @@ -54,7 +54,7 @@ below. Basic operations can be performed on dates: Has two functions: difference and subtraction. If the second argument is a date, calculates the difference between the first - date and the secmond date (e.g. ``1951Q2-1950Q1`` is equal to + date and the second date (e.g. ``1951Q2-1950Q1`` is equal to ``5``). If the second argument is an integer ``X``, subtracts ``X`` periods from the date (e.g. ``1951Q2-2`` is equal to ``1950Q4``). @@ -69,7 +69,7 @@ below. Basic operations can be performed on dates: Can be used to create a range of dates. For instance, ``r = 1950Q1:1951Q1`` creates a ``dates`` object with five elements: - ``1950Q1, 1950Q2, 1950Q3, 1950Q4`` and ``1951Q1``. By default the + ``1950Q1``, ``1950Q2``, ``1950Q3``, ``1950Q4`` and ``1951Q1``. By default the increment between each element is one period. This default can be changed using, for instance, the following instruction: ``1950Q1:2:1951Q1`` which will instantiate a ``dates`` object with -- GitLab