diff --git a/vlib/flag/flag_to.v b/vlib/flag/flag_to.v index dea86e1879..fd8159abf0 100644 --- a/vlib/flag/flag_to.v +++ b/vlib/flag/flag_to.v @@ -665,7 +665,7 @@ pub fn (fm FlagMapper) to_doc(dc DocConfig) !string { docs << '${name_and_version}' } - // Resolve the desciption if visible + // Resolve the description if visible if dc.options.show.has(.description) { mut description := '' // Set the description from any `xdoc` (or user defined) from *struct* diff --git a/vlib/net/dialer.v b/vlib/net/dialer.v index 25b75bdbe3..7c11e59828 100644 --- a/vlib/net/dialer.v +++ b/vlib/net/dialer.v @@ -1,6 +1,6 @@ module net -// Dialer is an abstract dialer interface for producing connections to adresses. +// Dialer is an abstract dialer interface for producing connections to addresses. pub interface Dialer { dial(address string) !Connection } diff --git a/vlib/strconv/atou.v b/vlib/strconv/atou.v index 55bfb7c0e3..56ba3270c0 100644 --- a/vlib/strconv/atou.v +++ b/vlib/strconv/atou.v @@ -82,7 +82,7 @@ pub fn atou(s string) !u32 { return u32(atou_common(s, max_u32)!) } -// atou32 is identical to atou. Here to provide a symetrical API with atoi/atoi32 +// atou32 is identical to atou. Here to provide a symmetrical API with atoi/atoi32 // It returns u32 in range [0..4294967295] or an Error. pub fn atou32(s string) !u32 { return u32(atou_common(s, max_u32)!)