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 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));