File tree 2 files changed +24
-2
lines changed
2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Spelling
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request : null
8
+
9
+ concurrency :
10
+ group : ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress : true
12
+
13
+ jobs :
14
+ typos_check :
15
+ name : Typos
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - name : Checkout repository
19
+ uses : actions/checkout@v4
20
+
21
+ - name : Check spelling
22
+ uses : crate-ci/typos@master
Original file line number Diff line number Diff line change @@ -323,7 +323,7 @@ public function getStubStmts(): array
323
323
/**
324
324
* Returns the counts of all symbols included in the stubs, grouped by type.
325
325
*
326
- * These counts are built up during traveral .
326
+ * These counts are built up during traversal .
327
327
*
328
328
* @psalm-return array<string, array<string, int>>
329
329
*/
@@ -466,7 +466,7 @@ private function resolveClassLike(ClassLikeWithDependencies $clwd): void
466
466
$ namespaceMatches = !$ clwd ->namespace ;
467
467
}
468
468
469
- // Reduntant check to make Psalm happy.
469
+ // Redundant check to make Psalm happy.
470
470
if ($ this ->currentClassLikeNamespace && $ namespaceMatches ) {
471
471
$ this ->currentClassLikeNamespace ->stmts [] = $ clwd ->node ;
472
472
} else {
You can’t perform that action at this time.
0 commit comments