From b8cd563569d949762eb4c1d9612ca840706d2202 Mon Sep 17 00:00:00 2001 From: Sarfaraz Muhammad Sajib <50302555+Muhammad-Sarfaraz@users.noreply.github.com> Date: Mon, 16 Oct 2023 16:23:09 +0600 Subject: [PATCH] Update src/Factories/Annotations/TestDox.php Co-authored-by: Owen Voke --- src/Factories/Annotations/TestDox.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Factories/Annotations/TestDox.php b/src/Factories/Annotations/TestDox.php index d9583991..5998f5b8 100644 --- a/src/Factories/Annotations/TestDox.php +++ b/src/Factories/Annotations/TestDox.php @@ -18,7 +18,7 @@ final class TestDox implements AddsAnnotations * Escapes docblock according to * https://manual.phpdoc.org/HTMLframesConverter/default/phpDocumentor/tutorial_phpDocumentor.howto.pkg.html#basics.desc * - * note: '@' escaping is not needed as it cannot be the first character of the line (it always starts with @testdox). + * Note: '@' escaping is not needed as it cannot be the first character of the line (it always starts with @testdox). */ assert($method->description !== null); $methodDescription = str_replace('*/', '{@*}', $method->description);