diff options
author | Daniel <kingdread@gmx.de> | 2020-06-12 16:04:17 +0200 |
---|---|---|
committer | Daniel <kingdread@gmx.de> | 2020-06-12 16:04:17 +0200 |
commit | 918f1e4eeab94ee8850aefd7c17b48ea2adcd6d2 (patch) | |
tree | 7f028c39921f89eefebae156651bbe2443fd07c8 /src/playerclass.rs | |
parent | 4a3e7137334601828f56a3ee614f01d84bada4ce (diff) | |
download | raidgrep-918f1e4eeab94ee8850aefd7c17b48ea2adcd6d2.tar.gz raidgrep-918f1e4eeab94ee8850aefd7c17b48ea2adcd6d2.tar.bz2 raidgrep-918f1e4eeab94ee8850aefd7c17b48ea2adcd6d2.zip |
fix up doc comments and tests
Diffstat (limited to 'src/playerclass.rs')
-rw-r--r-- | src/playerclass.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playerclass.rs b/src/playerclass.rs index 31a49aa..ba207e6 100644 --- a/src/playerclass.rs +++ b/src/playerclass.rs @@ -14,7 +14,7 @@ use thiserror::Error; /// probably don't want any Dragonhunters. /// /// So this enum unifies the handling between core specs and elite specs, and provides them with a -/// convenient [`Display`][Display] implementation as well. +/// convenient [`Display`][fmt::Display] implementation as well. #[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)] pub enum PlayerClass { Profession(Profession), |