From 760fa1b9d2976a72fd9806a14a40e329b34064bd Mon Sep 17 00:00:00 2001 From: "marc.wuerth" Date: Mon, 5 Jun 2023 13:12:24 +0200 Subject: [PATCH] Remove superfluous leading blank line in code example https://github.com/php-fig/per-coding-style/pull/74#issuecomment-1572166302 --- spec.md | 1 - 1 file changed, 1 deletion(-) diff --git a/spec.md b/spec.md index 181b80b..a2ac269 100644 --- a/spec.md +++ b/spec.md @@ -1199,7 +1199,6 @@ on the second line, and MUST be indented once. The following examples show proper common usage of short closures. ```php - $func = fn(int $x, int $y): int => $x + $y; $func = fn(int $x, int $y): int