diff --git a/guide/english/c/operators/index.md b/guide/english/c/operators/index.md index fefa0a0a4d..f3cc4f9e0c 100644 --- a/guide/english/c/operators/index.md +++ b/guide/english/c/operators/index.md @@ -91,7 +91,7 @@ int main() int a = 8, b = 5; bool c = (a > b); // c = true ``` -- `<` Less than - True when the first operand is smaller then the second. +- `<` Less than - True when the first operand is smaller than the second. ```C int a = 5, b = 8; bool c = (a < b); // c = true