fix typo in dynamic.md documentation
authorDavid Lam <davidlam@fb.com>
Sun, 26 Jun 2016 00:03:42 +0000 (17:03 -0700)
committerFacebook Github Bot 0 <facebook-github-bot-0-bot@fb.com>
Sun, 26 Jun 2016 00:08:23 +0000 (17:08 -0700)
Summary: #accept2ship

Reviewed By: Orvid

Differential Revision: D3486732

fbshipit-source-id: 45bfe1daa1dbd1e427fcd18e71e6b9eeb6d6b2b7

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()
 ```