Skip to content

Commit a165246

Browse files
committed
Fixed minor error in docblock comment
1 parent df1b575 commit a165246

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1959,7 +1959,7 @@ Various utilities dealing with AST
19591959
* For example:
19601960
*
19611961
* ```php
1962-
* Node::fromArray([
1962+
* AST::fromArray([
19631963
* 'kind' => 'ListValue',
19641964
* 'values' => [
19651965
* ['kind' => 'StringValue', 'value' => 'my str'],

src/Utils/AST.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class AST
4545
* For example:
4646
*
4747
* ```php
48-
* Node::fromArray([
48+
* AST::fromArray([
4949
* 'kind' => 'ListValue',
5050
* 'values' => [
5151
* ['kind' => 'StringValue', 'value' => 'my str'],

0 commit comments

Comments
 (0)