Skip to content
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');
}
}