Skip to content

Commit 26a4bcf

Browse files
committed
fix: parsing of packages
1 parent 052a125 commit 26a4bcf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Markdown/TempestPackageParser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ public function parse(InlineParserContext $inlineContext): bool
3535
$url = match ($package) {
3636
'app' => 'https://github.com/tempestphp/tempest-app',
3737
default => $url = str($package)
38-
->pascal()
39-
->prepend('https://github.com/tempestphp/tempest-framework/tree/main/src/Tempest/')
38+
->kebab()
39+
->prepend('https://github.com/tempestphp/tempest-framework/tree/main/packages/')
4040
->toString(),
4141
};
4242

0 commit comments

Comments
 (0)