From 8b9c5cea4a5ecff53f7b910b54d9961a8303bacc Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sat, 7 Jun 2025 01:14:11 +0300 Subject: [PATCH] blog(nix-iceberg): fix typos --- site/blog/2024-04-15-nix-iceberg.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/blog/2024-04-15-nix-iceberg.md b/site/blog/2024-04-15-nix-iceberg.md index 2da6348..58e6e02 100644 --- a/site/blog/2024-04-15-nix-iceberg.md +++ b/site/blog/2024-04-15-nix-iceberg.md @@ -953,7 +953,7 @@ If you can't find the mentions in these pages, check the archives out. Evaluating `(_:_) == (_:_)`, we see that it is `false`, which means the two functions aren't equal to eachother, as we are comparing them directly and when -compared directly, function comparisions return false. +compared directly, function comparisons return false. But then why does `(a:a) == (a:a)` return `true`? Aren't we still comparing functions?