diff options
| author | Fuwn <[email protected]> | 2021-05-23 13:57:01 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-23 13:57:01 +0000 |
| commit | 6535663f6be4fa01034e04c148421fbb2cf47735 (patch) | |
| tree | dabbb900a8017cd42e7bde3e04c899378fc90bec | |
| parent | refactor(server): fix some unnecessarily exposed modules, allow dead code for... (diff) | |
| download | whirl-6535663f6be4fa01034e04c148421fbb2cf47735.tar.xz whirl-6535663f6be4fa01034e04c148421fbb2cf47735.zip | |
fix(config): doc comment format
| -rw-r--r-- | crates/whirl_config/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/whirl_config/src/lib.rs b/crates/whirl_config/src/lib.rs index 66d3a26..c2264f2 100644 --- a/crates/whirl_config/src/lib.rs +++ b/crates/whirl_config/src/lib.rs @@ -46,7 +46,7 @@ impl Config { s.try_into() } - // Get a certain configuration key or group from the configuration file. + /// Get a certain configuration key or group from the configuration file. pub fn get() -> Config { return if let Err(why) = Self::load() { error!( |