Merge pull request #175455 from michaelmouf/patch-1

Fix typo in compareLists docstring
This commit is contained in:
Robert Hensing
2022-05-31 16:01:16 +02:00
committed by GitHub
+1 -1
View File
@@ -507,7 +507,7 @@ rec {
compareLists compare [ "a" ] []
=> 1
compareLists compare [ "a" "b" ] [ "a" "c" ]
=> 1
=> -1
*/
compareLists = cmp: a: b:
if a == []