Skip to content

Commit

Permalink
Merge pull request #83 from matscube/fix/type-mismatch
Browse files Browse the repository at this point in the history
Corrected the type mismatch of the return value of the function in docs
  • Loading branch information
koriym authored Nov 6, 2024
2 parents c08fb7d + d611a22 commit 52b4fb6
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 52b4fb6

Please sign in to comment.