Change part of speech for syntax (#40)
authorOnè <43485962+c-git@users.noreply.github.com>
Thu, 23 May 2024 07:05:22 +0000 (03:05 -0400)
committerGitHub <noreply@github.com>
Thu, 23 May 2024 07:05:22 +0000 (09:05 +0200)
book/src/04_traits/03_operator_overloading.md

index b8835f6..36ef868 100644 (file)
@@ -28,7 +28,7 @@ pub trait PartialEq {
 ```
 
 When you write `x == y` the compiler will look for an implementation of the `PartialEq` trait for the types of `x` and `y`
-and replace `x == y` with `x.eq(y)`. It's syntax sugar!
+and replace `x == y` with `x.eq(y)`. It's syntactic sugar!
 
 This is the correspondence for the main operators: