From d46161e49487a7f2923922eccd4917b9e53f17a2 Mon Sep 17 00:00:00 2001 From: Kamil Krawczyk Date: Mon, 10 Jun 2024 19:36:51 +0200 Subject: [PATCH] Fix arrow symbol typo in the functions.md (#5899) In the first note, in the first sentence, the arrow symbol is written as '=\\>'. The backslash character must be removed. --- src/content/language/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/language/functions.md b/src/content/language/functions.md index 768e5ebe91..c88c822a83 100644 --- a/src/content/language/functions.md +++ b/src/content/language/functions.md @@ -49,7 +49,7 @@ The => expr syntax is a shorthand for is sometimes referred to as _arrow_ syntax. :::note -Only _expressions_ can appear between the arrow (`=\>`) and the semicolon (`;`). +Only _expressions_ can appear between the arrow (`=>`) and the semicolon (`;`). Expressions evaluate to values. This means that you can't write a statement where Dart expects a value. For example,