From 71d0f6f8965850e3f8298d14e380b22defbef98a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 19 Jul 2020 17:12:48 +1000 Subject: Cleanup: spelling --- source/blender/imbuf/intern/openexr/openexr_api.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source/blender/imbuf/intern/openexr') diff --git a/source/blender/imbuf/intern/openexr/openexr_api.cpp b/source/blender/imbuf/intern/openexr/openexr_api.cpp index 2a5532a0902..887225f0dc6 100644 --- a/source/blender/imbuf/intern/openexr/openexr_api.cpp +++ b/source/blender/imbuf/intern/openexr/openexr_api.cpp @@ -1209,7 +1209,7 @@ void IMB_exr_read_channels(void *handle) ExrHandle *data = (ExrHandle *)handle; int numparts = data->ifile->parts(); - /* check if exr was saved with previous versions of blender which flipped images */ + /* Check if EXR was saved with previous versions of blender which flipped images. */ const StringAttribute *ta = data->ifile->header(0).findTypedAttribute( "BlenderMultiChannel"); @@ -1803,12 +1803,12 @@ static void imb_exr_type_by_channels(ChannelList &channels, } if (!layerNames.empty()) { - /* if layerNames is not empty, it means at least one layer is non-empty, + /* If `layerNames` is not empty, it means at least one layer is non-empty, * but it also could be layers without names in the file and such case - * shall be considered a multilayer exr + * shall be considered a multi-layer EXR. * - * that's what we do here: test whether there're empty layer names together - * with non-empty ones in the file + * That's what we do here: test whether there are empty layer names together + * with non-empty ones in the file. */ for (ChannelList::ConstIterator i = channels.begin(); i != channels.end(); i++) { for (std::set::iterator i = layerNames.begin(); i != layerNames.end(); i++) { -- cgit v1.2.3