Skip to content

Commit

Permalink
Fix a typo in the about command
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfox committed Nov 30, 2023
1 parent 57a5d96 commit 4f74ff4
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 4f74ff4

Please sign in to comment.