summaryrefslogtreecommitdiffstats
path: root/src/2geom/generic-rect.h
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2018-10-01 23:21:40 +0000
committerEduard Braun <eduard.braun2@gmx.de>2018-10-01 23:21:40 +0000
commit33cd18d64ea3a67b90aa87b225b0d18447f01138 (patch)
tree7e404a57fa4b7a8b10825c2f26741c90f89f7c5c /src/2geom/generic-rect.h
parentAvoid duplicating defines in config.h and on command line (diff)
downloadinkscape-33cd18d64ea3a67b90aa87b225b0d18447f01138.tar.gz
inkscape-33cd18d64ea3a67b90aa87b225b0d18447f01138.zip
2geom: update to c709d6b6780098d3e53363d925f7aee3c2640478
Update README and remove obsolete files
Diffstat (limited to 'src/2geom/generic-rect.h')
-rw-r--r--src/2geom/generic-rect.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/2geom/generic-rect.h b/src/2geom/generic-rect.h
index fdc7f369b..f611f3e90 100644
--- a/src/2geom/generic-rect.h
+++ b/src/2geom/generic-rect.h
@@ -89,7 +89,7 @@ public:
f[Y] = CInterval(y0, y1);
}
/** @brief Create a rectangle from a range of points.
- * The resulting rectangle will contain all ponts from the range.
+ * The resulting rectangle will contain all points from the range.
* The return type of iterators must be convertible to Point.
* The range must not be empty. For possibly empty ranges, see OptRect.
* @param start Beginning of the range
@@ -280,7 +280,7 @@ public:
void unionWith(OptCRect const &b);
/** @brief Expand the rectangle in both directions by the specified amount.
- * Note that this is different from scaling. Negative values wil shrink the
+ * Note that this is different from scaling. Negative values will shrink the
* rectangle. If <code>-amount</code> is larger than
* half of the width, the X interval will contain only the X coordinate
* of the midpoint; same for height. */
@@ -288,7 +288,7 @@ public:
expandBy(amount, amount);
}
/** @brief Expand the rectangle in both directions.
- * Note that this is different from scaling. Negative values wil shrink the
+ * Note that this is different from scaling. Negative values will shrink the
* rectangle. If <code>-x</code> is larger than
* half of the width, the X interval will contain only the X coordinate
* of the midpoint; same for height. */
@@ -374,7 +374,7 @@ public:
}
/** @brief Create a rectangle from a range of points.
- * The resulting rectangle will contain all ponts from the range.
+ * The resulting rectangle will contain all points from the range.
* If the range contains no points, the result will be an empty rectangle.
* The return type of iterators must be convertible to the corresponding
* point type (Point or IntPoint).