Merge pull request #175455 from michaelmouf/patch-1
Fix typo in compareLists docstring
This commit is contained in:
commit
c532e8c44e
1 changed files with 1 additions and 1 deletions
|
@ -507,7 +507,7 @@ rec {
|
||||||
compareLists compare [ "a" ] []
|
compareLists compare [ "a" ] []
|
||||||
=> 1
|
=> 1
|
||||||
compareLists compare [ "a" "b" ] [ "a" "c" ]
|
compareLists compare [ "a" "b" ] [ "a" "c" ]
|
||||||
=> 1
|
=> -1
|
||||||
*/
|
*/
|
||||||
compareLists = cmp: a: b:
|
compareLists = cmp: a: b:
|
||||||
if a == []
|
if a == []
|
||||||
|
|
Loading…
Reference in a new issue