Renamed write to write_toml in the config

This commit is contained in:
Dave Hrycyszyn
2024-06-07 18:22:07 +01:00
parent 6f756d4fb6
commit 9dc515fb78
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ pub(crate) struct SideNodeConfig {
pub(crate) name: String,
}
pub(crate) fn write(
pub(crate) fn write_toml(
config: &SideNodeConfig,
file_path: &PathBuf,
) -> Result<(), Box<dyn std::error::Error>> {