We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82240d9 commit 11f4feaCopy full SHA for 11f4fea
lib/Migrator/Diff.h
@@ -662,7 +662,7 @@ class diff_match_patch {
662
static string_t diff_linesToCharsMunge(const string_t &text, std::map<LinePtr, size_t> &lineHash) {
663
string_t chars;
664
// Walk the text, pulling out a substring for each line.
665
- // text.split('\n') would would temporarily double our memory footprint.
+ // text.split('\n') would temporarily double our memory footprint.
666
// Modifying text would create many large strings to garbage collect.
667
typename string_t::size_type lineLen;
668
for (typename string_t::const_pointer lineStart = text.c_str(), textEnd = lineStart + text.size(); lineStart < textEnd; lineStart += lineLen + 1) {
0 commit comments