From: Jordan DeLong Date: Sun, 20 Jan 2013 04:02:45 +0000 (-0800) Subject: Fix comment in folly::dynamic X-Git-Tag: v0.22.0~1083 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=968440a97ba25eb18935d90e6377d30ffe17b318;p=folly.git Fix comment in folly::dynamic Summary: That's all. Test Plan: Nope. Reviewed By: simpkins@fb.com FB internal diff: D684144 --- diff --git a/folly/dynamic.h b/folly/dynamic.h index c0cdc626..88d23d9f 100644 --- a/folly/dynamic.h +++ b/folly/dynamic.h @@ -1,5 +1,5 @@ /* - * Copyright 2012 Facebook, Inc. + * Copyright 2013 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -306,8 +306,8 @@ public: * AssociativeContainer-style find interface for objects. Throws if * this is not an object. * - * Returns: end() if the key is not present, or an iterator pointing - * to the item. + * Returns: items().end() if the key is not present, or a + * const_item_iterator pointing to the item. */ const_item_iterator find(dynamic const&) const;