summaryrefslogtreecommitdiffstats
path: root/crates/common/src/types.rs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2024-04-17 22:38:03 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2024-04-20 14:38:17 +0200
commit35e68444dd5e9d3d5fc39409c48be6eb3fa05e07 (patch)
tree34401e1ea5b25b71d8a78304386fd46c8c5c48d5 /crates/common/src/types.rs
parent44bc19c60edb90edce5d37bd08c04ad6cfbf7c23 (diff)
downloadrebel-35e68444dd5e9d3d5fc39409c48be6eb3fa05e07.tar
rebel-35e68444dd5e9d3d5fc39409c48be6eb3fa05e07.zip
Replace recipe separator with ::
Make the single : usable for other syntax in the recipe language.
Diffstat (limited to 'crates/common/src/types.rs')
-rw-r--r--crates/common/src/types.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/common/src/types.rs b/crates/common/src/types.rs
index a5d6678..2a06275 100644
--- a/crates/common/src/types.rs
+++ b/crates/common/src/types.rs
@@ -15,7 +15,7 @@ pub struct TaskID {
impl Display for TaskID {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
- write!(f, "{}:{}", self.recipe, self.task)
+ write!(f, "{}::{}", self.recipe, self.task)
}
}