Skip to content

Commit 363ce95

Browse files
committed
Fixed typos
1 parent 542c0a0 commit 363ce95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Translation/PhpExtractor.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ protected function normalizeToken($token)
9191
/**
9292
* Seeks to a non-whitespace token.
9393
*/
94-
private function seekToNextReleventToken(\Iterator $tokenIterator)
94+
private function seekToNextRelevantToken(\Iterator $tokenIterator)
9595
{
9696
for (; $tokenIterator->valid(); $tokenIterator->next()) {
9797
$t = $tokenIterator->current();
@@ -154,7 +154,7 @@ protected function parseTokens($tokens, MessageCatalogue $catalog)
154154
$tokenIterator->seek($key);
155155

156156
foreach ($sequence as $item) {
157-
$this->seekToNextReleventToken($tokenIterator);
157+
$this->seekToNextRelevantToken($tokenIterator);
158158

159159
if ($this->normalizeToken($tokenIterator->current()) == $item) {
160160
$tokenIterator->next();

0 commit comments

Comments
 (0)