From 192a82ca2dc29312c48962c022fb37e97da2d709 Mon Sep 17 00:00:00 2001 From: Sergey Kaunov Date: Sun, 9 Apr 2023 17:07:26 +0300 Subject: [PATCH] Fix typo --- en/src/type-conversions/from-into.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/type-conversions/from-into.md b/en/src/type-conversions/from-into.md index ab1d534..e008010 100644 --- a/en/src/type-conversions/from-into.md +++ b/en/src/type-conversions/from-into.md @@ -37,7 +37,7 @@ fn main() { // FIX the error in two ways /* 1. use a similar type which `impl From`, maybe you - should check the docs mentiond above to find the answer */ + should check the docs mentioned above to find the answer */ // 2. a keyword from the last chapter let i3: i32 = 'a'.into();