diff --git a/doc/gtl_interval_concept.htm b/doc/gtl_interval_concept.htm
index 8eb4d008..14984832 100644
--- a/doc/gtl_interval_concept.htm
+++ b/doc/gtl_interval_concept.htm
@@ -386,14 +386,14 @@
Functions
bool abuts(const T1& a, const T2& b,
direction_1d dir)
- Returns true if interval b abuts but down not overlap
+ | Returns true if interval b abuts but does not overlap
interval a on the end of interval a specified by dir. |
template
<typename T1, typename T2>
bool abuts(const T1& a, const T2& b) |
- Returns true if interval b abuts but down not overlap
+ | Returns true if interval b abuts but does not overlap
interval a. |
diff --git a/doc/gtl_rectangle_concept.htm b/doc/gtl_rectangle_concept.htm
index a8ed2bed..2ade39b1 100644
--- a/doc/gtl_rectangle_concept.htm
+++ b/doc/gtl_rectangle_concept.htm
@@ -609,7 +609,7 @@ Functions
bool abuts(const T1& a, const T2& b,
direction_2d dir)
- Returns true if rectangle b abuts but down not overlap
+ | Returns true if rectangle b abuts but does not overlap
rectangle a on the side of rectangle a specified by dir. |
@@ -618,7 +618,7 @@ Functions
bool abuts(const T1& a, const T2& b,
orientation_2d)
- Returns true if rectangle b abuts but down not overlap
+ | Returns true if rectangle b abuts but does not overlap
rectangle a on either side of rectangle a specified by the
orientation_2d. |
@@ -626,7 +626,7 @@ Functions
template
<typename T1, typename T2>
bool abuts(const T1& a, const T2& b) |
- Returns true if rectangle b abuts but down not overlap
+ | Returns true if rectangle b abuts but does not overlap
rectangle a on any side. |
@@ -636,8 +636,8 @@ Functions
bool consider_touch = true)
Sets rectangle a to the intersection of rectangle a and
-interval b along the orientation_2d and returns true. If the does
-not intersect the interval, the rectangle is unchanged and the function
+interval b along the orientation_2d and returns true. If the rectangle
+does not intersect the interval, the rectangle is unchanged and the function
returns false. If the flag consider_touch is true intervals that
abut are considered to intersect. |