File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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/
77pub 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/
1616pub fn system_data_dir ( ) -> Result < PathBuf > {
1717 dirs:: data_dir ( )
1818 . map ( |cd| cd. join ( "xmr-btc-swap" ) )
You can’t perform that action at this time.
0 commit comments