From f3432eb9220fec4b12626db7d273ddca53178971 Mon Sep 17 00:00:00 2001 From: Ricardo Guzman Date: Wed, 18 Dec 2024 14:27:33 -0500 Subject: [PATCH] [docs] Fix typo (#3893) Signed-off-by: Ricardo Guzman --- docs/manual/get-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/get-started.mdx b/docs/manual/get-started.mdx index 469542567d..ccb7680952 100644 --- a/docs/manual/get-started.mdx +++ b/docs/manual/get-started.mdx @@ -665,7 +665,7 @@ In the case of `str()`, it requires a type to conform to either the `Stringable` or `StringableRaising` trait. Each trait requires a conforming type to implement a `__str__()` method that returns a `String` representation. The only difference between the two traits is that `Stringable` requires that the method *cannot* -raise and error, whereas `StringableRaising` indicates that the method *might* +raise an error, whereas `StringableRaising` indicates that the method *might* raise an error. (To learn more, read [The `Stringable`, `Representable`, and `Writable` traits](/mojo/manual/traits#the-stringable-representable-and-writable-traits).)