Skip to content

Commit

Permalink
Fix \` in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
emlun authored and soc committed Jun 10, 2019
1 parent f06a0ad commit 18be8a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ impl ProjectDirs {
/// | ------- | --------------------------------------------------------------------- | --------------------------------------------------- |
/// | Linux | `$XDG_CACHE_HOME`/`_project_path_` or `$HOME`/.cache/`_project_path_` | /home/alice/.cache/barapp |
/// | macOS | `$HOME`/Library/Caches/`_project_path_` | /Users/Alice/Library/Caches/com.Foo-Corp.Bar-App |
/// | Windows | `{FOLDERID_LocalAppData}`\`_project_path_`\cache | C:\Users\Alice\AppData\Local\Foo Corp\Bar App\cache |
/// | Windows | `{FOLDERID_LocalAppData}`\\`_project_path_`\\cache | C:\Users\Alice\AppData\Local\Foo Corp\Bar App\cache |
pub fn cache_dir(&self) -> &Path {
self.cache_dir.as_path()
}
Expand All @@ -405,7 +405,7 @@ impl ProjectDirs {
/// | ------- | ----------------------------------------------------------------------- | ------------------------------------------------------ |
/// | Linux | `$XDG_CONFIG_HOME`/`_project_path_` or `$HOME`/.config/`_project_path_` | /home/alice/.config/barapp |
/// | macOS | `$HOME`/Library/Preferences/`_project_path_` | /Users/Alice/Library/Preferences/com.Foo-Corp.Bar-App |
/// | Windows | `{FOLDERID_RoamingAppData}`\`_project_path_`\config | C:\Users\Alice\AppData\Roaming\Foo Corp\Bar App\config |
/// | Windows | `{FOLDERID_RoamingAppData}`\\`_project_path_`\\config | C:\Users\Alice\AppData\Roaming\Foo Corp\Bar App\config |
pub fn config_dir(&self) -> &Path {
self.config_dir.as_path()
}
Expand All @@ -415,7 +415,7 @@ impl ProjectDirs {
/// | ------- | -------------------------------------------------------------------------- | ------------------------------------------------------------- |
/// | Linux | `$XDG_DATA_HOME`/`_project_path_` or `$HOME`/.local/share/`_project_path_` | /home/alice/.local/share/barapp |
/// | macOS | `$HOME`/Library/Application Support/`_project_path_` | /Users/Alice/Library/Application Support/com.Foo-Corp.Bar-App |
/// | Windows | `{FOLDERID_RoamingAppData}`\`_project_path_`\data | C:\Users\Alice\AppData\Roaming\Foo Corp\Bar App\data |
/// | Windows | `{FOLDERID_RoamingAppData}`\\`_project_path_`\\data | C:\Users\Alice\AppData\Roaming\Foo Corp\Bar App\data |
pub fn data_dir(&self) -> &Path {
self.data_dir.as_path()
}
Expand All @@ -425,7 +425,7 @@ impl ProjectDirs {
/// | ------- | -------------------------------------------------------------------------- | ------------------------------------------------------------- |
/// | Linux | `$XDG_DATA_HOME`/`_project_path_` or `$HOME`/.local/share/`_project_path_` | /home/alice/.local/share/barapp |
/// | macOS | `$HOME`/Library/Application Support/`_project_path_` | /Users/Alice/Library/Application Support/com.Foo-Corp.Bar-App |
/// | Windows | `{FOLDERID_LocalAppData}`\`_project_path_`\data | C:\Users\Alice\AppData\Local\Foo Corp\Bar App\data |
/// | Windows | `{FOLDERID_LocalAppData}`\\`_project_path_`\\data | C:\Users\Alice\AppData\Local\Foo Corp\Bar App\data |
pub fn data_local_dir(&self) -> &Path {
self.data_local_dir.as_path()
}
Expand Down

0 comments on commit 18be8a3

Please sign in to comment.