From 1e20bf0a52cca89f7a8d5f459b8c67372df54fc9 Mon Sep 17 00:00:00 2001 From: Rob Janssen Date: Tue, 17 Mar 2015 16:32:55 +0100 Subject: [PATCH] * Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 79d16dd..ae96d2b 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ These parameters are all '`write once`'; the class will, for it's lifetime, use ### Step 1: Set up secret shared key -Wwhen a user wants to setup two-factor auth (or, more correctly, multi-factor auth) you need to create a secret. This will be your **shared** (this will be the `one-time` in [TOTP](http://en.wikipedia.org/wiki/Time-based_One-time_Password_Algorithm)) **secret**. This secret will need to be entered by the user in their app. This can be done manually, in which case you simply display the secret and have the user type it in the app: +When a user wants to setup two-factor auth (or, more correctly, multi-factor auth) you need to create a secret. This will be your **shared** (this will be the `one-time` in [TOTP](http://en.wikipedia.org/wiki/Time-based_One-time_Password_Algorithm)) **secret**. This secret will need to be entered by the user in their app. This can be done manually, in which case you simply display the secret and have the user type it in the app: ````php $secret = $tfa->createSecret();