From: David Lam Date: Sun, 26 Jun 2016 00:03:42 +0000 (-0700) Subject: fix typo in dynamic.md documentation X-Git-Tag: 2016.07.26~114 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1ce31b9aab2dbf6d86c6f6df39374a7334d81f43;p=folly.git fix typo in dynamic.md documentation Summary: #accept2ship Reviewed By: Orvid Differential Revision: D3486732 fbshipit-source-id: 45bfe1daa1dbd1e427fcd18e71e6b9eeb6d6b2b7 --- diff --git a/folly/docs/Dynamic.md b/folly/docs/Dynamic.md index 7ffb009b..3d321022 100644 --- a/folly/docs/Dynamic.md +++ b/folly/docs/Dynamic.md @@ -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() ```