From d13f765be8d202450bf106057e19d6bd57f51f6c Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Tue, 12 May 2015 00:33:22 -0400 Subject: [PATCH] Make mention of `if` more generic `if` can be a statement or also an expression. --- src/doc/trpl/primitive-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/primitive-types.md b/src/doc/trpl/primitive-types.md index bb2bf028700d2..22483816769c3 100644 --- a/src/doc/trpl/primitive-types.md +++ b/src/doc/trpl/primitive-types.md @@ -15,7 +15,7 @@ let x = true; let y: bool = false; ``` -A common use of booleans is in [`if` statements][if]. +A common use of booleans is in [`if` conditionals][if]. [if]: if.html