summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2013-01-10 23:18:54 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2013-01-10 23:45:07 +0100
commitcc59e5b7450bd496e778b079d246dc4bb6c19d76 (patch)
tree0d39289bf80bd7d7fec76ce841a7e253ee7b1803 /src/utils
parent61993e427d061ccfa21a2a6a025c7d4ebbf07d12 (diff)
downloadmanaserv-cc59e5b7450bd496e778b079d246dc4bb6c19d76.tar.gz
manaserv-cc59e5b7450bd496e778b079d246dc4bb6c19d76.tar.xz
manaserv-cc59e5b7450bd496e778b079d246dc4bb6c19d76.zip
Small documentation updates for Point and Rectangle
This documentation used to be accurate, until Point was merged with the Position class in commit 8ff3e6674c1d4fc05fc1ba87f42484689fca0879. Also fixed a typo.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/point.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/utils/point.h b/src/utils/point.h
index 988b6c5..b077286 100644
--- a/src/utils/point.h
+++ b/src/utils/point.h
@@ -25,7 +25,7 @@
#include <ostream>
/**
- * A point in positive space. Usually represents pixel coordinates on a map.
+ * A point. Usually represents pixel coordinates on a map.
*/
class Point
{
@@ -62,8 +62,7 @@ class Point
};
/**
- * A rectangle in positive space. Usually represents a pixel-based zone on a
- * map.
+ * A rectangle. Usually represents a pixel-based zone on a map.
*/
class Rectangle
{