Parcourir la source

spelling: recursive

Josh Soref il y a 7 ans
Parent
commit
b928d39e6a
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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);
         }