From 5bcb08ea0326908bee7ffda009d46da7da1f2668 Mon Sep 17 00:00:00 2001 From: Tharun Thennarasu Date: Sat, 6 Apr 2024 14:54:44 +0530 Subject: [PATCH] lib.hasAttrByPath: fix typo (#302042) --- lib/attrsets.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index de5968b95348..49d311ed37b3 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -87,9 +87,9 @@ rec { Nix has a [has attribute operator `?`](https://nixos.org/manual/nix/stable/language/operators#has-attribute), which is sufficient for such queries, as long as the number of attributes is static. For example: ```nix - (x?a.b) == hasAttryByPath ["a" "b"] x + (x?a.b) == hasAttrByPath ["a" "b"] x # and - (x?${f p}."example.com") == hasAttryByPath [ (f p) "example.com" ] x + (x?${f p}."example.com") == hasAttrByPath [ (f p) "example.com" ] x ``` **Laws**: