Skip to content

Commit

Permalink
Fix leading whitespace in default manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptibell committed Mar 27, 2024
1 parent df87cd9 commit 6d38731
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/manifests/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use crate::{
};

pub const MANIFEST_FILE_NAME: &str = "auth.toml";
const MANIFEST_DEFAULT_CONTENTS: &str = r#"
const MANIFEST_DEFAULT_CONTENTS: &str = r#"\
# This file lists authentication tokens managed by Rokit, a toolchain manager for Roblox projects.
# For more information, see <|REPOSITORY_URL|>
Expand Down
2 changes: 1 addition & 1 deletion lib/manifests/rokit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use crate::{
};

pub const MANIFEST_FILE_NAME: &str = "rokit.toml";
const MANIFEST_DEFAULT_CONTENTS: &str = r#"
const MANIFEST_DEFAULT_CONTENTS: &str = r#"\
# This file lists tools managed by Rokit, a toolchain manager for Roblox projects.
# For more information, see <|REPOSITORY_URL|>
Expand Down

0 comments on commit 6d38731

Please sign in to comment.