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 src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ pub async fn run(ctx: Context, args: ServerArgs) -> Result<()> {
);
}

println!("Serving recipe files from: {:?}", &state.base_path);
println!("Serving recipe files from: {:?}", state.base_path);

// Maximum request body size: 1MB (reasonable for recipe files)
const MAX_BODY_SIZE: usize = 1024 * 1024;
Expand Down
2 changes: 1 addition & 1 deletion src/util/cooklang_to_cooklang.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ fn w_step(w: &mut impl io::Write, step: &Step, recipe: &Recipe) -> Result<()> {
sep,
reference.components.join(&sep),
sep,
&igr.name
igr.name
)
} else {
igr.name.clone()
Expand Down
Loading