From 7ce705735a6699b5c325435e0dda6592f8bc0154 Mon Sep 17 00:00:00 2001 From: lbdreyer Date: Wed, 21 Jul 2021 18:28:35 +0100 Subject: [PATCH] Fix some typos in the cube maths docs --- docs/iris/src/userguide/cube_maths.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/iris/src/userguide/cube_maths.rst b/docs/iris/src/userguide/cube_maths.rst index d2d4d84b68..35e672eaf6 100644 --- a/docs/iris/src/userguide/cube_maths.rst +++ b/docs/iris/src/userguide/cube_maths.rst @@ -157,7 +157,7 @@ Let's extend this example slightly, by taking a slice from the middle air_temperature / (K) (longitude: 49; time: 240) Compared to our original time-series, the *air_temp_T_slice* cube has one -less dimension *and* it's shape if different. However, this doesn't prevent +less dimension *and* its shape is different. However, this doesn't prevent us from performing cube arithmetic with it, thanks to the extended cube broadcasting behaviour:: @@ -237,7 +237,7 @@ by a cube with unit ``'1'`` will preserve units, so the cube ``temperature`` will be given the same units as are in ``pot_temperature``. It should be noted that some combinations of units, particularly those involving power operations, will not result in a valid unit and will cause the calculation -to fail. For example, a cube ``a`` had units ``'m'`` then ``a ** 0.5`` +to fail. For example, if a cube ``a`` had units ``'m'`` then ``a ** 0.5`` would result in an error since the square root of a meter has no meaningful unit (if ``a`` had units ``'m2'`` then ``a ** 0.5`` would result in a cube with units ``'m'``).