From 980926d4a6d0619192205a619e0fe77f6b2df3d1 Mon Sep 17 00:00:00 2001 From: Mathieu Demange Date: Wed, 7 May 2025 10:16:33 +0200 Subject: [PATCH] Reword isSingularity() brief to avoid Doxygen line break The last period in "i.e." was previously interpreted as the end of a brief description. --- modules/juce_graphics/geometry/juce_AffineTransform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_graphics/geometry/juce_AffineTransform.h b/modules/juce_graphics/geometry/juce_AffineTransform.h index 5cf724797c..0e9d182355 100644 --- a/modules/juce_graphics/geometry/juce_AffineTransform.h +++ b/modules/juce_graphics/geometry/juce_AffineTransform.h @@ -255,7 +255,7 @@ public: /** Returns true if this transform has no effect on points. */ bool isIdentity() const noexcept; - /** Returns true if this transform maps to a singularity - i.e. if it has no inverse. */ + /** Returns true if this transform maps to a singularity (i.e., has no inverse). */ bool isSingularity() const noexcept; /** Returns true if the transform only translates, and doesn't scale or rotate the points. */