Browse Source

spelling: recursive

Josh Soref 7 years ago
parent
commit
b928d39e6a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/cc/data.cc

+ 1 - 1
src/lib/cc/data.cc

@@ -1284,7 +1284,7 @@ prettyPrint(ConstElementPtr element, std::ostream& out,
             out << std::string(indent + step, ' ');
             // add keyword:
             out << "\"" << it->first << "\": ";
-            // recusive call
+            // recursive call
             prettyPrint(it->second, out, indent + step, step);
         }