From 1300a3869c0fad3b4b81cb08b3a4830d3ab1ae46 Mon Sep 17 00:00:00 2001 From: Jonathan Andersson Date: Fri, 12 Dec 2025 12:05:45 +0900 Subject: [PATCH 1/2] doc: correct atom constants documentation --- crates/atom/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/atom/src/lib.rs b/crates/atom/src/lib.rs index 168ab35..46a677a 100644 --- a/crates/atom/src/lib.rs +++ b/crates/atom/src/lib.rs @@ -89,15 +89,15 @@ const EKALA: &str = "ekala"; const LOCK: &str = "lock"; const TOML: &str = "toml"; -/// The conventional filename for an Atom lockfile (e.g., `atom.lock`). +/// The conventional filename for an Atom manifest (e.g., `atom.toml`). /// /// This static variable is lazily initialized to ensure it is constructed only when needed. pub static ATOM_MANIFEST_NAME: LazyLock = LazyLock::new(|| format!("{}.{}", ATOM, TOML)); -/// The conventional filename for an Atom manifest (e.g., `atom.toml`). +/// The conventional filename for an Ekala manifest (e.g., `ekala.toml`). /// /// This static variable is lazily initialized to ensure it is constructed only when needed. pub static EKALA_MANIFEST_NAME: LazyLock = LazyLock::new(|| format!("{}.{}", EKALA, TOML)); -/// The conventional filename for an Ekala manifest (e.g., `ekala.toml`). +/// The conventional filename for an Atom lockfile (e.g., `atom.lock`). /// /// This static variable is lazily initialized to ensure it is constructed only when needed. pub static LOCK_NAME: LazyLock = LazyLock::new(|| format!("{}.{}", ATOM, LOCK)); From bb7b096e52ee505f55c8c9e8673dd98f4ae0ce7d Mon Sep 17 00:00:00 2001 From: Jonathan Andersson Date: Fri, 12 Dec 2025 12:07:54 +0900 Subject: [PATCH 2/2] doc: update URL to use the correct `atom` crate --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b75f21..68c9c60 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,7 @@ Key modules include: - `atom::uri` - URI parsing and resolution - `atom::storage` - Storage backend implementations -See the [atom crate documentation](https://docs.rs/atom) for detailed API information. +See the [atom crate documentation](https://docs.eka.rs/atom/) for detailed API information. ### CLI Interface