Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/zeroclaw-channels/src/discord/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ impl DiscordOutgoing {
/// 100-char limit; `options` are the typed command options (empty → the legacy
/// single free-text `input`).
///
/// `Eq` is not derived: [`OptionSpec`] carries `f64` numeric bounds.
/// `Eq` is not derived: `OptionSpec` carries `f64` numeric bounds.
#[derive(Debug, Clone, PartialEq)]
pub struct DiscordSlashCommandSpec {
pub skill_name: String,
Expand Down
2 changes: 1 addition & 1 deletion crates/zeroclaw-config/src/sections.rs
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ sections! {
shape: TypedFamilyMap,
group: Foundation,
help: "Pick which chat platforms ZeroClaw should listen on. Global \
channel settings live on [channels]; each configured platform \
channel settings live on `[channels]`; each configured platform \
still gets its own alias.",
},
Hardware => {
Expand Down
2 changes: 1 addition & 1 deletion crates/zeroclaw-runtime/src/skills/cache.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Process-global cache for skill-directory loads.
//!
//! [`super::load_skills_from_directory`] and [`super::load_open_skills_from_directory`]
//! [`super::load_skills_from_directory`] and `super::load_open_skills_from_directory`
//! are pure functions of `(dir, allow_scripts, filesystem state)`, but each call
//! does a recursive read *and* a full security audit (content scan + parse) of
//! every skill subdirectory. They run on every prompt build and every
Expand Down