Skip to content

Commit bfd73fe

Browse files
committed
Fix typos in comments detected by the misspell tool
1 parent b1cc565 commit bfd73fe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Definitions resolved just-in-time when needed:
8686
Not supported yet:
8787
- constants with `define()`
8888

89-
Namespaces are not considerd a declaration by design because they only make up a part of the fully qualified name
89+
Namespaces are not considered a declaration by design because they only make up a part of the fully qualified name
9090
and don't map to one unique declaration.
9191

9292
### What is considered a reference?

src/DefinitionResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,7 @@ public function getTypeFromNode($node)
10911091

10921092
$parameterDocBlockTag = $this->tryGetDocBlockTagForParameter($docBlock, $variableName);
10931093
if ($parameterDocBlockTag !== null && ($type = $parameterDocBlockTag->getType())) {
1094-
// Doc block comments supercede all other forms of type inference
1094+
// Doc block comments supersede all other forms of type inference
10951095
return $type;
10961096
}
10971097

src/Indexer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function __construct(
9696
}
9797

9898
/**
99-
* Will read and parse the passed source files in the project and add them to the appropiate indexes
99+
* Will read and parse the passed source files in the project and add them to the appropriate indexes
100100
*
101101
* @return Promise <void>
102102
*/

0 commit comments

Comments
 (0)