diff options
| author | Illia <[email protected]> | 2016-12-31 16:39:46 +0300 |
|---|---|---|
| committer | Illia <[email protected]> | 2016-12-31 16:39:46 +0300 |
| commit | 52e871383317c85ce8144ecae4120633da367928 (patch) | |
| tree | 64f3fedc2f4d9a8be97c2c1731ed947968fc634a /src/utils/builder | |
| parent | Add command alias support and command.example (diff) | |
| download | serenity-52e871383317c85ce8144ecae4120633da367928.tar.xz serenity-52e871383317c85ce8144ecae4120633da367928.zip | |
Fix typo
Diffstat (limited to 'src/utils/builder')
| -rw-r--r-- | src/utils/builder/search.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/builder/search.rs b/src/utils/builder/search.rs index 1aadec4..47863ca 100644 --- a/src/utils/builder/search.rs +++ b/src/utils/builder/search.rs @@ -19,7 +19,7 @@ pub enum SortingMode { } impl SortingMode { - /// Retrieves the name of the sorting mode. This is equivilant to a + /// Retrieves the name of the sorting mode. This is equivalent to a /// lowercase string version of each variant. pub fn name(&self) -> &str { match *self { @@ -60,7 +60,7 @@ pub enum SortingOrder { } impl SortingOrder { - /// Retrieves the name of the sorting order. This is equivilant to a + /// Retrieves the name of the sorting order. This is equivalent to a /// lowercase string version of each variant. pub fn name(&self) -> &str { match *self { |