From 844554aab909d5918f09c0ba6393d97c26215a36 Mon Sep 17 00:00:00 2001 From: kichukiran97 Date: Wed, 16 Jan 2019 02:12:22 +0530 Subject: [PATCH] typo (#29647) --- guide/english/c/operators/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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