Skip to content

Commit

Permalink
Javascript: Fix typo in sign up log message in Cognito Identity Provi…
Browse files Browse the repository at this point in the history
…der (awsdocs#5642)
  • Loading branch information
colbychaskell authored and max-webster committed Mar 15, 2024
1 parent a2528dc commit 6023f95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const signUpHandler = async (commands) => {
validateClient(clientId);
log(`Signing up.`);
await signUp({ clientId, username, password, email });
log(`Signed up. An confirmation email has been sent to: ${email}.`);
log(`Signed up. A confirmation email has been sent to: ${email}.`);
log(`Run 'confirm-sign-up ${username} <code>' to confirm your account.`);
} catch (err) {
log(err);
Expand Down

0 comments on commit 6023f95

Please sign in to comment.