pkgs/clan: Fix typos

This commit is contained in:
a-kenji
2025-02-02 23:20:39 +07:00
parent 18d7167fb3
commit 94362c1ff5
3 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ def split_selector(selector: str) -> list[Selector]:
@dataclass
class FlakeCacheEntry:
"""
a recrusive structure to store the cache, with a value and a selector
a recursive structure to store the cache, with a value and a selector
"""
def __init__(

View File

@@ -243,7 +243,7 @@ def calc_patches(
msg = f"Type mismatch for key '{update_key}'. Cannot update {type(all_values_flat.get(update_key))} with {type(update_data)}"
raise ClanError(msg)
# Handle list seperation
# Handle list separation
if isinstance(update_data, list):
duplicates = find_duplicates(update_data)
if duplicates: