From d1072f85eaeb1b1850b50282892584ba826c1cb4 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 14 Jan 2017 14:16:20 -0800 Subject: [PATCH] Correct the casing for GenerateVapidKeys example Example uses camel casing, but the model actually uses Pascal casing. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0954a5d..b894178 100644 --- a/README.md +++ b/README.md @@ -117,8 +117,8 @@ retained by the push service (by default, four weeks). VapidDetails vapidKeys = VapidHelper.GenerateVapidKeys(); // Prints 2 URL Safe Base64 Encoded Strings -Console.WriteLine("Public {0}", vapidKeys.publicKey); -Console.WriteLine("Private {0}", vapidKeys.privateKey); +Console.WriteLine("Public {0}", vapidKeys.PublicKey); +Console.WriteLine("Private {0}", vapidKeys.PrivateKey); ``` ### Input @@ -127,7 +127,7 @@ None. ### Returns -Returns a VapidDetails object with **publicKey** and **privateKey** values populated which are +Returns a VapidDetails object with **PublicKey** and **PrivateKey** values populated which are URL Safe Base64 encoded strings. > **Note:** You should create these keys once, store them and use them for all