From 968440a97ba25eb18935d90e6377d30ffe17b318 Mon Sep 17 00:00:00 2001 From: Jordan DeLong Date: Sat, 19 Jan 2013 20:02:45 -0800 Subject: [PATCH] Fix comment in folly::dynamic Summary: That's all. Test Plan: Nope. Reviewed By: simpkins@fb.com FB internal diff: D684144 --- folly/dynamic.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.34.1