From 7838ef366aec92e39e5bd0da5ae2360cf8d8904a Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 6 Apr 2023 18:12:45 +0900 Subject: [PATCH] crypto.pem: fix typo in decode.v (#17896) seperator -> separator --- vlib/crypto/pem/decode.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/crypto/pem/decode.v b/vlib/crypto/pem/decode.v index eb498500d7..2c1dc7b876 100644 --- a/vlib/crypto/pem/decode.v +++ b/vlib/crypto/pem/decode.v @@ -35,7 +35,7 @@ fn parse_headers(block string) ?(map[string][]string, string) { // so that we can manually index them headers_seperated := headers_str.split_into_lines() - // index the key/value seperator ':', otherwise + // index the key/value separator ':', otherwise // return none because it should exist // the initialisation of this function already tells us headers are present mut colon_index := headers_seperated[0].index(colon) or { return none }