Skip to content

Commit

Permalink
Fix a typo in the about command (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfox committed Nov 30, 2023
1 parent 7646bea commit 1d076c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FeatureFlagsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ protected function aboutCommandInfo(): void
{
if (class_exists(AboutCommand::class)) {
AboutCommand::add('Feature Flags', [
'Pipeline' => fn () => implode(', Hello', config('features.pipeline')),
'Pipeline' => fn () => implode(', ', config('features.pipeline')),
]);
}
}
Expand Down

0 comments on commit 1d076c0

Please sign in to comment.