Skip to content

Commit

Permalink
Corrected the type mismatch of the return value of the function
Browse files Browse the repository at this point in the history
  • Loading branch information
matscube committed Sep 12, 2024
1 parent c08fb7d commit d611a22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manuals/1.0/en/20.GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class CountProvider implements ProviderInterface

class MessageProvider implements ProviderInterface
{
public function get(): int
public function get(): string
{
return 'hello world';
}
Expand Down
2 changes: 1 addition & 1 deletion manuals/1.0/ja/20.GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class CountProvider implements ProviderInterface

class MessageProvider implements ProviderInterface
{
public function get(): int
public function get(): string
{
return 'hello world';
}
Expand Down

0 comments on commit d611a22

Please sign in to comment.