From 85353f79105729d7ea6902495232250d770e42a6 Mon Sep 17 00:00:00 2001 From: Petr Kulikov Date: Mon, 17 Dec 2018 10:50:19 +0100 Subject: [PATCH] Fix typo --- docs/csharp/language-reference/operators/not-equal-operator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/language-reference/operators/not-equal-operator.md b/docs/csharp/language-reference/operators/not-equal-operator.md index 390c3939eae79..6db371b8105e2 100644 --- a/docs/csharp/language-reference/operators/not-equal-operator.md +++ b/docs/csharp/language-reference/operators/not-equal-operator.md @@ -12,7 +12,7 @@ ms.assetid: eeff7a4e-ad6f-462d-9f8d-49e9b91c6c97 --- # != Operator (C# Reference) -The inequality operator `!=` returns `true` if its operands are not equal, `true` otherwise. For the operands of the [built-in types](../keywords/built-in-types-table.md), the expression `x != y` produces the same result as the expression `!(x == y)`. For more information, see the [== Operator](equality-comparison-operator.md) article. +The inequality operator `!=` returns `true` if its operands are not equal, `false` otherwise. For the operands of the [built-in types](../keywords/built-in-types-table.md), the expression `x != y` produces the same result as the expression `!(x == y)`. For more information, see the [== Operator](equality-comparison-operator.md) article. The following example demonstrates the usage of the `!=` operator: