Update doc comments on setName and setMetaInfo.
diff --git a/ndn-cpp/data.hpp b/ndn-cpp/data.hpp
index 832f05b..416c1bb 100644
--- a/ndn-cpp/data.hpp
+++ b/ndn-cpp/data.hpp
@@ -153,8 +153,16 @@
    */
   void setSignature(const Signature& signature) { signature_ = signature.clone(); }
   
+  /**
+   * Set name to a copy of the given Name.
+   * @param name The Name which is copied.
+   */
   void setName(const Name& name) { name_ = name; }
   
+  /**
+   * Set metaInfo to a copy of the given MetaInfo.
+   * @param metaInfo The MetaInfo which is copied.
+   */
   void setMetainfo(const MetaInfo& metaInfo) { metaInfo_ = metaInfo; }
 
   /**