From 6b7d381d19e16f3a1e27f3dde028b1e2b554fd0e Mon Sep 17 00:00:00 2001 From: Brianna Smart Date: Wed, 27 Sep 2023 16:58:51 -0700 Subject: [PATCH] Fix image indexing doc formatting Add in missing space which was causing formatting issues --- doc/lsst.afw.image/indexing-conventions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/lsst.afw.image/indexing-conventions.rst b/doc/lsst.afw.image/indexing-conventions.rst index 7109b4e319..fabc71d0d6 100644 --- a/doc/lsst.afw.image/indexing-conventions.rst +++ b/doc/lsst.afw.image/indexing-conventions.rst @@ -93,7 +93,7 @@ That's not the case if we make a subimage of our subimage: >>> sub2b.getBBox(LOCAL) (minimum=(0, 0), maximum=(2, 1)) -As in the previous case, when we make a subimage using a box in `PARENT`coordinates, the PARENT bounding box of the result is that same box. +As in the previous case, when we make a subimage using a box in `PARENT` coordinates, the PARENT bounding box of the result is that same box. When we make a subimage using a box in `LOCAL` coordinates, that input box is different from both the resulting subimage's `LOCAL` bounding box and its `PARENT` bounding box. .. note::