aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--geom.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/geom.hpp b/geom.hpp
index 5c374d2..abb71c0 100644
--- a/geom.hpp
+++ b/geom.hpp
@@ -29,7 +29,7 @@ struct line {
line(double aa, double bb, double cc) : a(aa), b(bb), c(cc) {}
double dist(vec p) const {
- // TODO
+ // TODo
return 1;
}