From e1d62fb15458189afda961545c6f0052a2485b8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 29 Aug 2021 23:48:56 +0200 Subject: [PATCH] Trade: typos. --- src/Magnum/Trade/MeshData.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/Trade/MeshData.cpp b/src/Magnum/Trade/MeshData.cpp index e4df296c6..121e778e3 100644 --- a/src/Magnum/Trade/MeshData.cpp +++ b/src/Magnum/Trade/MeshData.cpp @@ -240,7 +240,7 @@ std::size_t MeshData::indexOffset() const { Containers::StridedArrayView2D MeshData::indices() const { /* For a non-indexed mesh returning zero size in both dimensions, indexed - mesh with zero indices sill has the second dimension non-zero */ + mesh with zero indices still has the second dimension non-zero */ if(!isIndexed()) return {}; const std::size_t indexTypeSize = meshIndexTypeSize(_indexType); /* Build a 2D view using information about attribute type size */ @@ -251,7 +251,7 @@ Containers::StridedArrayView2D MeshData::mutableIndices() { CORRADE_ASSERT(_indexDataFlags & DataFlag::Mutable, "Trade::MeshData::mutableIndices(): index data not mutable", {}); /* For a non-indexed mesh returning zero size in both dimensions, indexed - mesh with zero indices sill has the second dimension non-zero */ + mesh with zero indices still has the second dimension non-zero */ if(!isIndexed()) return {}; const std::size_t indexTypeSize = meshIndexTypeSize(_indexType); /* Build a 2D view using information about index type size */