Skip to content

Commit 29ac890

Browse files
fix(swap-fs): fix documentation for swap-fs
1 parent 9c72c2b commit 29ac890

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

swap-fs/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::path::{Path, PathBuf};
33

44
/// This is the default location for the overall config-dir specific by system
55
// Linux: /home/<user>/.config/xmr-btc-swap/
6-
// OSX: /Users/<user>/Library/Preferences/xmr-btc-swap/
6+
// OSX: /Users/<user>/Library/Application Support/xmr-btc-swap/
77
pub fn system_config_dir() -> Result<PathBuf> {
88
dirs::config_dir()
99
.map(|cd| cd.join("xmr-btc-swap"))
@@ -12,7 +12,7 @@ pub fn system_config_dir() -> Result<PathBuf> {
1212

1313
/// This is the default location for the overall data-dir specific by system
1414
// Linux: /home/<user>/.local/share/xmr-btc-swap/
15-
// OSX: /Users/<user>/Library/ApplicationSupport/xmr-btc-swap/
15+
// OSX: /Users/<user>/Library/Application Support/xmr-btc-swap/
1616
pub fn system_data_dir() -> Result<PathBuf> {
1717
dirs::data_dir()
1818
.map(|cd| cd.join("xmr-btc-swap"))

0 commit comments

Comments
 (0)