Merge branch 'master' into master

pull/1545/head
Gennadiy Civil 7 years ago committed by GitHub
commit f7098a2a4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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 WagnerFischer 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(

Loading…
Cancel
Save