From d99055f686903b68320d7cf2bba2fd2f254fc658 Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Wed, 16 Oct 2024 14:33:03 -0500 Subject: [PATCH] Slightly adjust breaks --- src/content/language/functions.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/language/functions.md b/src/content/language/functions.md index f311f2747e..ab17fd4eb6 100644 --- a/src/content/language/functions.md +++ b/src/content/language/functions.md @@ -269,10 +269,10 @@ More about those in the next section. ## Function types You can specify the type of a function, which is known as a *function type*. -A function type is obtained from a function declaration header by replacing -the function name by the keyword `Function`. Moreover, you are allowed to omit -the names of positional parameters, but the names of named parameters can't -be omitted. For example: +A function type is obtained from a function declaration header by +replacing the function name by the keyword `Function`. +Moreover, you are allowed to omit the names of positional parameters, but +the names of named parameters can't be omitted. For example: ```dart