From 9f5935a3f52d883947ba582906fd862bc69d4896 Mon Sep 17 00:00:00 2001 From: Mingwei Samuel Date: Tue, 8 Feb 2022 20:27:58 -0800 Subject: [PATCH] Fix typos in doc comments --- riven/src/consts/route.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/riven/src/consts/route.rs b/riven/src/consts/route.rs index cdf6aae..fecda96 100644 --- a/riven/src/consts/route.rs +++ b/riven/src/consts/route.rs @@ -31,7 +31,7 @@ pub enum RegionalRoute { #[derive(Clone, Copy)] #[repr(u8)] #[non_exhaustive] -// Note: strum(serialize = ...) actuall specifies extra DEserialization values. +// Note: strum(serialize = ...) actually specifies extra DEserialization values. pub enum PlatformRoute { /// Brazil. #[strum(to_string="BR1", serialize="BR")] @@ -83,7 +83,7 @@ pub enum PlatformRoute { impl PlatformRoute { /// Converts this [`PlatformRoute`] into its corresponding -/// [`RegionalRoute`]. Useful, for example, in [`match-v5` endpoints](crate::endpoints::MatchV5). + /// [`RegionalRoute`]. Useful, for example, in [`match-v5` endpoints](crate::endpoints::MatchV5). pub fn to_regional(self) -> RegionalRoute { match self { Self::BR1 => RegionalRoute::AMERICAS,