Skip to content

Commit 930264e

Browse files
committed
Missing quote
1 parent 3545831 commit 930264e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/caution-with-catches/problem/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function verify_password(string $password): bool;
1111

1212
For this exercise this function will always throw an exception but unfortunately the exception message contains the password in plain text!
1313

14-
To pass this exercise you will need to call the `verify_password` function with the password provided, handle the exception and output `"Given password is invalid, please try again`.
14+
To pass this exercise you will need to call the `verify_password` function with the password provided, handle the exception and output `"Given password is invalid, please try again"`.
1515

1616
PHP 8 allows you to handle the exception without capturing the exception itself which will ensure this message is not leaked further.
1717

0 commit comments

Comments
 (0)