Fixing incorrect code example. ContainsKey example call was to contains() which does not exist.

NickBusey
2014-12-11 12:05:17 -08:00
parent 963caf9f9a
commit 868141e8ff

@@ -126,7 +126,7 @@ If the actual value doesn't match the target type, a default value will be retur
If you want to know if some value is present, call `containsKey()`:
if (root.contains("extra"))
if (root.containsKey("extra"))
{
// root["extra"] is valid
}