From dcf0b5cdd32a5c10304ca9974e52f0e63132bb46 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 6 Feb 2026 08:33:32 +0000 Subject: [PATCH] Fix typos in comments Co-authored-by: KCarretto <16250309+KCarretto@users.noreply.github.com> --- implants/golem/src/main.rs | 2 +- tavern/tomes/file_tree/main.eldritch | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/implants/golem/src/main.rs b/implants/golem/src/main.rs index 4fa8205ad..83b033b3e 100644 --- a/implants/golem/src/main.rs +++ b/implants/golem/src/main.rs @@ -136,7 +136,7 @@ fn main() -> anyhow::Result<()> { }); } } - // If we havent specified tomes in INPUT, we need to look through the asset locker for tomes to run + // If we haven't specified tomes in INPUT, we need to look through the asset locker for tomes to run if parsed_tomes.is_empty() { match locker.list() { Ok(assets) => { diff --git a/tavern/tomes/file_tree/main.eldritch b/tavern/tomes/file_tree/main.eldritch index 3d2f236e5..b7280c420 100644 --- a/tavern/tomes/file_tree/main.eldritch +++ b/tavern/tomes/file_tree/main.eldritch @@ -22,14 +22,14 @@ def can_read(f): # Are we root? root = usernfo["euid"]["uid"] == 0 - # If the user isnt root and the user doesnt own the file, clear the user byte + # If the user isn't root and the user doesn't own the file, clear the user byte if not root and f["owner"] not in (usernfo["euid"]["name"], usernfo["uid"]["name"]): f_user = 0 # TODO: https://github.com/spellshift/realm/issues/570 # Will NOT match any group other than primary until #570 is fixed - # If the user isnt root and the group doesnt own the file, clear the group byte + # If the user isn't root and the group doesn't own the file, clear the group byte if not root and f["group"] not in (str(usernfo["egid"]), str(usernfo["gid"])): f_group = 0