Skip to content

Commit

Permalink
Fix bracket type for list of seasons (#1420)
Browse files Browse the repository at this point in the history
  • Loading branch information
bouweandela authored Jan 7, 2022
1 parent ed5e54b commit 2fc6a19
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions doc/recipe/preprocessor.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1056,8 +1056,8 @@ See also :func:`esmvalcore.preprocessor.monthly_statistics`.
``seasonal_statistics``
-----------------------

This function produces statistics for each season (default: "(DJF, MAM, JJA,
SON)" or custom seasons e.g. "(JJAS, ONDJFMAM)" ) in the dataset. Note that
This function produces statistics for each season (default: ``[DJF, MAM, JJA,
SON]`` or custom seasons e.g. ``[JJAS, ONDJFMAM]``) in the dataset. Note that
this function will not check for missing time points. For instance, if you are
looking at the DJF field, but your datasets starts on January 1st, the first
DJF field will only contain data from January and February.
Expand All @@ -1070,9 +1070,9 @@ Parameters:
'median', 'std_dev', 'min', 'max', 'sum' and 'rms'. Default is 'mean'

* seasons: seasons to build statistics.
Default is '(DJF, MAM, JJA, SON)'
Default is '[DJF, MAM, JJA, SON]'

See also :func:`esmvalcore.preprocessor.seasonal_mean`.
See also :func:`esmvalcore.preprocessor.seasonal_statistics`.

.. _annual_statistics:

Expand Down Expand Up @@ -1118,7 +1118,7 @@ Parameters:
'mon', 'daily', 'day'. Default is 'full'

* seasons: if period 'seasonal' or 'season' allows to set custom seasons.
Default is '(DJF, MAM, JJA, SON)'
Default is '[DJF, MAM, JJA, SON]'

Examples:
* Monthly climatology:
Expand Down Expand Up @@ -1240,7 +1240,7 @@ Parameters:
parameters from extract_time_. Default is null
* standardize: if true calculate standardized anomalies (default: false)
* seasons: if period 'seasonal' or 'season' allows to set custom seasons.
Default is '(DJF, MAM, JJA, SON)'
Default is '[DJF, MAM, JJA, SON]'
Examples:
* Anomalies from the full period climatology:

Expand Down

0 comments on commit 2fc6a19

Please sign in to comment.