fix typo in dynamic.md documentation
[folly.git] / folly / docs / Dynamic.md
index 7ffb009b2571a09f62e1b6ba7739da3e13cea2da..3d32102216559a9409350cc22e46d967b8ce6031 100644 (file)
@@ -120,7 +120,7 @@ which returns an iterator compatible with `items()`:
     // pos->first is "hello"
     // pos->second is "world"
 
-    auto pos = obj.find("no_such_key);
+    auto pos = obj.find("no_such_key");
     // pos == obj.items().end()
 ```