From b9c6add856ba6b2ee2034deaaee312a99159e885 Mon Sep 17 00:00:00 2001 From: Joas Schilling <213943+nickvergessen@users.noreply.github.com> Date: Mon, 16 Sep 2024 19:45:03 +0200 Subject: [PATCH] misc: fix typo in property type annotation --- src/Type/Parser/Lexer/TokenizedAnnotation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Type/Parser/Lexer/TokenizedAnnotation.php b/src/Type/Parser/Lexer/TokenizedAnnotation.php index 4e4c403c..0aa15f99 100644 --- a/src/Type/Parser/Lexer/TokenizedAnnotation.php +++ b/src/Type/Parser/Lexer/TokenizedAnnotation.php @@ -13,7 +13,7 @@ final class TokenizedAnnotation public function __construct( /** @var non-empty-string */ private string $name, - /** @var non-empty-list> */ + /** @var non-empty-list */ private array $tokens, ) {}