diff --git a/Secure Coding - Password Reset.md b/Secure Coding - Password Reset.md index 3b6f3dc..8ec20a6 100644 --- a/Secure Coding - Password Reset.md +++ b/Secure Coding - Password Reset.md @@ -40,8 +40,7 @@ res.send('Password updated successfully'); }); function validateToken(username, token) { // Logic to validate the token for the user -// Check if the token is valid, belongs to the user, and has not -expired +// Check if the token is valid, belongs to the user, and has not expired // Return true if valid, false otherwise } ```