Skip to content

Commit 002fd8f

Browse files
committed
Fix typo
1 parent 454649e commit 002fd8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/io_base/src/app_dirs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const PROJECT_DIRS: LazyLock<ProjectDirs> =
3434
/// - Others: `$XDG_CONFIG_HOME/Tectonic` if defined, otherwise
3535
/// `$HOME/.config/Tectonic`
3636
pub fn get_user_config() -> Result<PathBuf> {
37-
Ok(PROJECT_DIRS.config_dir().into_path_buf())
37+
Ok(PROJECT_DIRS.config_dir().to_path_buf())
3838
}
3939

4040
/// Get the directory for per-user Tectonic configuration files, creating it if needed.

0 commit comments

Comments
 (0)