From 566ebd99a44c9b41420dc19507137a6cb6c0862c Mon Sep 17 00:00:00 2001 From: Ruth Comer Date: Mon, 7 Dec 2020 17:24:51 +0000 Subject: [PATCH] minor comment tweak + whatsnew --- docs/iris/gallery_code/meteorology/plot_COP_maps.py | 2 +- docs/iris/src/whatsnew/latest.rst | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/iris/gallery_code/meteorology/plot_COP_maps.py b/docs/iris/gallery_code/meteorology/plot_COP_maps.py index c9940d713fd..9c103b21063 100644 --- a/docs/iris/gallery_code/meteorology/plot_COP_maps.py +++ b/docs/iris/gallery_code/meteorology/plot_COP_maps.py @@ -38,7 +38,7 @@ def cop_metadata_callback(cube, field, filename): filename. """ - # Extract the experiment name (such as a1b or e1) from the filename (in + # Extract the experiment name (such as A1B or E1) from the filename (in # this case it is just the start of the file name, before the first "."). fname = os.path.basename(filename) # filename without path. experiment_label = fname.split(".")[0] diff --git a/docs/iris/src/whatsnew/latest.rst b/docs/iris/src/whatsnew/latest.rst index e9fb007aca4..43bf831dadb 100644 --- a/docs/iris/src/whatsnew/latest.rst +++ b/docs/iris/src/whatsnew/latest.rst @@ -22,8 +22,11 @@ This document explains the changes made to Iris for this release 🐛 Bugs Fixed ============= -* `@gcaria`_ fixed :meth:`~iris.cube.Cube.cell_measure_dims` to also accept the string name of a :class:`~iris.coords.CellMeasure`. (:pull:`3931`) -* `@gcaria`_ fixed :meth:`~iris.cube.Cube.ancillary_variable_dims` to also accept the string name of a :class:`~iris.coords.AncillaryVariable`. (:pull:`3931`) +* `@gcaria`_ fixed :meth:`~iris.cube.Cube.cell_measure_dims` to also accept the + string name of a :class:`~iris.coords.CellMeasure`. (:pull:`3931`) +* `@gcaria`_ fixed :meth:`~iris.cube.Cube.ancillary_variable_dims` to also + accept the string name of a :class:`~iris.coords.AncillaryVariable`. + (:pull:`3931`) 💣 Incompatible Changes @@ -47,8 +50,8 @@ This document explains the changes made to Iris for this release 📚 Documentation ================ -* `@rcomer`_ updated the "Seasonal ensemble model plots" Gallery example. - (:pull:`3933`) +* `@rcomer`_ updated the "Seasonal ensemble model plots" and "Global average + annual temperature maps" Gallery examples. (:pull:`3933` and :pull:`3934`) 💼 Internal