Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rootCircle committed Jan 17, 2025
1 parent e79bafc commit 8cff501
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cmd/default.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::common_store::worflow_store::TASK_IS_GIT_REPO;
use crate::common_store::workflow_store::TASK_IS_GIT_REPO;
use crate::step::{ActionStep, Step, Task};
use crate::workflow_queue::WorkflowQueue;

Expand Down
2 changes: 1 addition & 1 deletion src/common_store/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pub(crate) mod event_store;
pub(crate) mod rules_store;
pub(crate) mod worflow_store;
pub(crate) mod workflow_store;
File renamed without changes.
2 changes: 1 addition & 1 deletion src/workflows/default/action/ta01_is_git_repo.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::{
bgit_error::BGitError,
common_store::worflow_store::{TASK_ASK_TO_INIT_GIT, TASK_HAS_STASH},
common_store::workflow_store::{TASK_ASK_TO_INIT_GIT, TASK_HAS_STASH},
step::{
ActionStep, PromptStep, Step,
Task::{ActionStepTask, PromptStepTask},
Expand Down

0 comments on commit 8cff501

Please sign in to comment.