diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-04-04 20:01:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-04 20:01:44 (GMT) |
commit | f7098a2a4dc2e3233251c4f8e8001ee773cd5a61 (patch) | |
tree | 553b3070e6a8e118a6a4864ac6ec40438ef6dd3f | |
parent | d81b6a0c4cecbe087fae28bd6a3a40d1f5f45df4 (diff) | |
parent | 891e436c6cb8817615c92494b8832ea51650c5a8 (diff) | |
download | googletest-f7098a2a4dc2e3233251c4f8e8001ee773cd5a61.zip googletest-f7098a2a4dc2e3233251c4f8e8001ee773cd5a61.tar.gz googletest-f7098a2a4dc2e3233251c4f8e8001ee773cd5a61.tar.bz2 |
Merge branch 'master' into masterrefs/pull/1545/head
-rw-r--r-- | googletest/include/gtest/internal/gtest-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/include/gtest/internal/gtest-internal.h b/googletest/include/gtest/internal/gtest-internal.h index ffc22f9..c050da7 100644 --- a/googletest/include/gtest/internal/gtest-internal.h +++ b/googletest/include/gtest/internal/gtest-internal.h @@ -157,7 +157,7 @@ namespace edit_distance { // Returns the optimal edits to go from 'left' to 'right'. // All edits cost the same, with replace having lower priority than // add/remove. -// Simple implementation of the Wagner–Fischer algorithm. +// Simple implementation of the Wagner-Fischer algorithm. // See http://en.wikipedia.org/wiki/Wagner-Fischer_algorithm enum EditType { kMatch, kAdd, kRemove, kReplace }; GTEST_API_ std::vector<EditType> CalculateOptimalEdits( |