Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed some typos. #247

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

### 🛠️ Environment configuration

1. Create a local environment file (`cp .env .env.local`) if you want to modify any parameter
1. Create a local environment file (`cp .env .env.local`) if you want to modify any parameter.

### 🔥 Application execution

Expand Down
2 changes: 1 addition & 1 deletion src/Mooc/CoursesCounter/Domain/CoursesCounterNotExist.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ final class CoursesCounterNotExist extends RuntimeException
{
public function __construct()
{
parent::__construct('The courses counter not exist');
parent::__construct('The courses counter does not exist');
}
}