Skip to content

Commit e8af5c6

Browse files
yuk7himairaw
authored andcommitted
Correct typo in branches-and-loops-local.md (#5501)
On line 41, (!TIP section) "compiler" was written as "compler".
1 parent d3212a6 commit e8af5c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/quick-starts/branches-and-loops-local.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ written one of the possible branches for an `if` statement: the true branch.
3838
> As you explore C# (or any programming language), you'll
3939
> make mistakes when you write code. The compiler will
4040
> find and report the errors. Look closely at the error
41-
> output and the code that generated the error. The compler
41+
> output and the code that generated the error. The compiler
4242
> error can usually help you find the problem.
4343
4444
This first sample shows the power of `if` and Boolean types. A *Boolean* is a variable that can have one of two values: `true` or `false`. C# defines a special type, `bool` for Boolean variables. The `if` statement checks the value of a `bool`. When the value is `true`, the statement following the `if` executes. Otherwise, it is skipped.

0 commit comments

Comments
 (0)