Skip to content

Commit b79e027

Browse files
committed
Fix comment typo
1 parent 05fbd19 commit b79e027

34 files changed

Lines changed: 34 additions & 34 deletions

libs/phpdoc/src/DocBlock/Tag/AssertIfFalseTag/AssertIfFalseTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use TypeLang\PhpDoc\DocBlock\Tag\TypedVariableTag;
88

99
/**
10-
* The "@assert-if-false" tag asserts the given type for a variable, but
10+
* The `@assert-if-false` tag asserts the given type for a variable, but
1111
* only when the function returns `false`.
1212
*/
1313
final class AssertIfFalseTag extends TypedVariableTag {}

libs/phpdoc/src/DocBlock/Tag/AssertIfFalseTag/AssertIfFalseTagDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use TypeLang\PhpDoc\DocBlock\TagDefinition\TagPlacement;
1616

1717
/**
18-
* The "`@assert-if-false`" tag asserts the given type for a variable, but
18+
* The `@assert-if-false` tag asserts the given type for a variable, but
1919
* only when the function returns `false`.
2020
*
2121
* ```

libs/phpdoc/src/DocBlock/Tag/AssertIfTrueTag/AssertIfTrueTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use TypeLang\PhpDoc\DocBlock\Tag\TypedVariableTag;
88

99
/**
10-
* The "@assert-if-true" tag asserts the given type for a variable, but
10+
* The `@assert-if-true` tag asserts the given type for a variable, but
1111
* only when the function returns `true`.
1212
*/
1313
final class AssertIfTrueTag extends TypedVariableTag {}

libs/phpdoc/src/DocBlock/Tag/AssertIfTrueTag/AssertIfTrueTagDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use TypeLang\PhpDoc\DocBlock\TagDefinition\TagPlacement;
1616

1717
/**
18-
* The "`@assert-if-true`" tag asserts the given type for a variable, but
18+
* The `@assert-if-true` tag asserts the given type for a variable, but
1919
* only when the function returns `true`.
2020
*
2121
* ```

libs/phpdoc/src/DocBlock/Tag/AssertTag/AssertTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use TypeLang\PhpDoc\DocBlock\Tag\TypedVariableTag;
88

99
/**
10-
* The "@assert" tag asserts that the given variable is narrowed to a
10+
* The `@assert` tag asserts that the given variable is narrowed to a
1111
* specified type once the call returns.
1212
*/
1313
final class AssertTag extends TypedVariableTag {}

libs/phpdoc/src/DocBlock/Tag/AssertTag/AssertTagDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use TypeLang\PhpDoc\DocBlock\TagDefinition\TagPlacement;
1616

1717
/**
18-
* The "`@assert`" tag asserts that the given variable is narrowed to a
18+
* The `@assert` tag asserts that the given variable is narrowed to a
1919
* specified type once the call returns.
2020
*
2121
* ```

libs/phpdoc/src/DocBlock/Tag/ExpectedExceptionTag/ExpectedExceptionTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use TypeLang\PhpDoc\DocBlock\Tag\TypedTag;
88

99
/**
10-
* The "@expectedException" tag declares the `Throwable` a test method is
10+
* The `@expectedException` tag declares the `Throwable` a test method is
1111
* expected to throw.
1212
*/
1313
final class ExpectedExceptionTag extends TypedTag {}

libs/phpdoc/src/DocBlock/Tag/ExpectedExceptionTag/ExpectedExceptionTagDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use TypeLang\PhpDoc\DocBlock\TagDefinition\TagPlacement;
1515

1616
/**
17-
* The "`@expectedException`" tag declares the `Throwable` a test method is
17+
* The `@expectedException` tag declares the `Throwable` a test method is
1818
* expected to throw.
1919
*
2020
* ```

libs/phpdoc/src/DocBlock/Tag/PhanClosureScopeTag/PhanClosureScopeTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use TypeLang\PhpDoc\DocBlock\Tag\TypedTag;
88

99
/**
10-
* The "@phan-closure-scope" tag binds the type of `$this` inside a
10+
* The `@phan-closure-scope` tag binds the type of `$this` inside a
1111
* `Closure`, so the closure body is analyzed as though bound to an
1212
* instance of the given class.
1313
*/

libs/phpdoc/src/DocBlock/Tag/PhanClosureScopeTag/PhanClosureScopeTagDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use TypeLang\PhpDoc\DocBlock\TagDefinition\TagPlacement;
1515

1616
/**
17-
* The "`@phan-closure-scope`" tag binds the type of `$this` inside a
17+
* The `@phan-closure-scope` tag binds the type of `$this` inside a
1818
* `Closure`, so the closure body is analyzed as though bound to an
1919
* instance of the given class.
2020
*

0 commit comments

Comments
 (0)