From d598a3a5662a0ce6d60b39d272fce9a278b348aa Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Sat, 30 Jun 2018 08:56:14 -0400 Subject: Misc. typos Found via `codespell -q 3 -I ../inkscape-whitelist.txt --skip="*.svg,*.po,*.nsh,*.in,./src/3rdparty"` --- src/object/sp-offset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/object/sp-offset.cpp') diff --git a/src/object/sp-offset.cpp b/src/object/sp-offset.cpp index 9f9297077..348e0ad32 100644 --- a/src/object/sp-offset.cpp +++ b/src/object/sp-offset.cpp @@ -350,7 +350,7 @@ void SPOffset::set_shape() { if ( fabs(this->rad) < 0.01 ) { // grosso modo: 0 - // just put the source this as the offseted one, no one will notice + // just put this source as the offsetted one, no one will notice // it's also useless to compute the offset with a 0 radius //XML Tree being used directly here while it shouldn't be. -- cgit v1.2.3 From 055196186fcd7f962e0f60ffe9967c511b8daa01 Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Fri, 31 Aug 2018 16:39:22 -0400 Subject: Requested revisions + more typos and grammar fixes --- src/object/sp-offset.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/object/sp-offset.cpp') diff --git a/src/object/sp-offset.cpp b/src/object/sp-offset.cpp index 348e0ad32..7d2997185 100644 --- a/src/object/sp-offset.cpp +++ b/src/object/sp-offset.cpp @@ -350,8 +350,8 @@ void SPOffset::set_shape() { if ( fabs(this->rad) < 0.01 ) { // grosso modo: 0 - // just put this source as the offsetted one, no one will notice - // it's also useless to compute the offset with a 0 radius + // just put the source of this (almost-non-offsetted) object as being the actual offset, + // no one will notice. it's also useless to compute the offset with a 0 radius //XML Tree being used directly here while it shouldn't be. const char *res_d = this->getRepr()->attribute("inkscape:original"); @@ -370,7 +370,7 @@ void SPOffset::set_shape() { return; } - // extra paraniac careful check. the preceding if () should take care of this case + // extra paranoiac careful check. the preceding if () should take care of this case if (fabs (this->rad) < 0.01) { this->rad = (this->rad < 0) ? -0.01 : 0.01; } -- cgit v1.2.3