Skip to content

v0.2.48..v0.2.49 changeset FilteredVisitor.cpp

Garret Voltz edited this page Oct 2, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/visitors/FilteredVisitor.cpp b/hoot-core/src/main/cpp/hoot/core/visitors/FilteredVisitor.cpp
index 1e05673..68de399 100644
--- a/hoot-core/src/main/cpp/hoot/core/visitors/FilteredVisitor.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/visitors/FilteredVisitor.cpp
@@ -110,7 +110,7 @@ void FilteredVisitor::visit(const ConstElementPtr& e)
   {
     // This is bad. Making this change was the result of a cascading set of const correctness
     // changes necessary in order to be able to call ElementVisitor from js files and not just
-    // ConstElementVisitor (#2831). We may need some redesign.
+    // ConstElementVisitor (#2831). We may need some re-design.
     _visitor->visit(std::const_pointer_cast<Element>(e));
   }
 }
Clone this wiki locally