Fix plural examples to use the right parameter name

BUG=
R=kevmoo@google.com

Review URL: https://codereview.chromium.org//1090303002
diff --git a/README.md b/README.md
index 860fb10..2f789a2 100644
--- a/README.md
+++ b/README.md
@@ -122,7 +122,7 @@
         name: "remainingEmailsMessage",
         args: [howMany, userName],
         desc: "How many emails remain after archiving.",
-        examples: {'number': 42, 'userName': 'Fred'});
+        examples: {'howMany': 42, 'userName': 'Fred'});
 
       print(remainingEmailsMessage(1, "Fred"));
 
@@ -139,7 +139,7 @@
           name: "remainingEmailsMessage",
           args: [howMany, userName],
           desc: "How many emails remain after archiving.",
-          examples: {'number': 42, 'userName': 'Fred'});
+          examples: {'howMany': 42, 'userName': 'Fred'});
 
 Similarly, there is an [Intl.gender][Intl.gender] message, and plurals
 and genders can be nested.