diff options
-rw-r--r-- | lib/pure.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure.nix b/lib/pure.nix index 3fe51cd..5d4b96b 100644 --- a/lib/pure.nix +++ b/lib/pure.nix @@ -31,7 +31,7 @@ let uri = import ./uri.nix { inherit (stockholm) lib; }; xml = import ./xml.nix { inherit (stockholm) lib; }; - # compose a list of functions to be applied from left to right, i.e. + # compose a list of functions to be applied from right to left, i.e. # compose :: [ (xm -> xn) ... (x1 -> x2) (x0 -> x1) ] -> x0 -> xn compose = foldl' (f: g: x: f (g x)) id; |