Skip to content

Commit 6a49f04

Browse files
committed
Rename misnamed method in hash operation tree builder
1 parent b6c5082 commit 6a49f04

File tree

1 file changed

+2
-2
lines changed
  • lib/super_diff/basic/operation_tree_builders

1 file changed

+2
-2
lines changed

lib/super_diff/basic/operation_tree_builders/hash.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def self.applies_to?(expected, actual)
1111
protected
1212

1313
def unary_operations
14-
unary_operations_using_variant_of_patience_algorithm
14+
unary_operations_using_longest_common_key_subsequence
1515
end
1616

1717
def build_operation_tree
@@ -20,7 +20,7 @@ def build_operation_tree
2020

2121
private
2222

23-
def unary_operations_using_variant_of_patience_algorithm
23+
def unary_operations_using_longest_common_key_subsequence
2424
aks = actual.keys
2525
eks = expected.keys
2626

0 commit comments

Comments
 (0)