Browse Source

Updated obsolete name in comment for stringAPI.h.

David Piuva 3 years ago
parent
commit
4cece3eaa8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/DFPSR/api/stringAPI.h

+ 1 - 1
Source/DFPSR/api/stringAPI.h

@@ -143,7 +143,7 @@ String& string_toStreamIndented(String& target, const int8_t& value, const Reada
 String& string_toStreamIndented(String& target, const uint8_t& value, const ReadableString& indentation);
 
 // Templates reused for all types
-// The source must inherit from Printable or have its own string_feedIndented overload
+// The source must inherit from Printable or have its own string_toStreamIndented overload
 template<typename T>
 String& string_toStream(String& target, const T& source) {
 	return string_toStreamIndented(target, source, U"");