From 4a342b939a8f890b5b790aa8343a8dd558daa2fd Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Thu, 9 May 2024 15:11:49 -0400 Subject: [PATCH] Fix CI failures. --- doc/src/row/index.md | 2 +- doc/src/row/scan.md | 2 +- src/workflow.rs | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/src/row/index.md b/doc/src/row/index.md index ce20f3c..b72e251 100644 --- a/doc/src/row/index.md +++ b/doc/src/row/index.md @@ -10,7 +10,7 @@ row [OPTIONS] * [`show`](show/index.md) * [`submit`](submit.md) * [`scan`](scan.md) -* [`uncomplete`](uncomplete.md) +* [`clean`](clean.md)
You should execute only one instance of row at a time for a given project. diff --git a/doc/src/row/scan.md b/doc/src/row/scan.md index 037c956..7539778 100644 --- a/doc/src/row/scan.md +++ b/doc/src/row/scan.md @@ -14,7 +14,7 @@ Under normal usage, you should not need to execute `row scan` manually. executes the action's command. > Note: `row scan` only **adds** new completed directories. To mark directories -> as no longer completed, use [`row uncomplete`](uncomplete.md). +> as no longer completed, use [`row clean`](clean.md). ## `[DIRECTORIES]` diff --git a/src/workflow.rs b/src/workflow.rs index 2ca714d..f836d17 100644 --- a/src/workflow.rs +++ b/src/workflow.rs @@ -34,7 +34,6 @@ pub struct Workflow { #[serde(default)] pub submit_options: HashMap, // TODO: refactor handling of submit options into more general action defaults. - /// The actions. #[serde(default)] pub action: Vec,