You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2013/11/27 06:51:47 UTC

svn commit: r1545930 - /subversion/trunk/subversion/bindings/javahl/native/Utility.hpp

Author: brane
Date: Wed Nov 27 05:51:47 2013
New Revision: 1545930

URL: http://svn.apache.org/r1545930
Log:
JavaHL docstring typosuction.

* subversion/bindings/javahl/native/Utility.hpp
  (JavaHL::Util::make_property_hash): Fix argument name in docstring.

Modified:
    subversion/trunk/subversion/bindings/javahl/native/Utility.hpp

Modified: subversion/trunk/subversion/bindings/javahl/native/Utility.hpp
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/javahl/native/Utility.hpp?rev=1545930&r1=1545929&r2=1545930&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/Utility.hpp (original)
+++ subversion/trunk/subversion/bindings/javahl/native/Utility.hpp Wed Nov 27 05:51:47 2013
@@ -59,7 +59,7 @@ make_keyword_hash(::Java::Env env, jobje
 
 
 /**
- * Converts property/value pairs the Java map @a jkeywords to an APR
+ * Converts property/value pairs the Java map @a jproperties to an APR
  * hash table allocated in @a pool. The keys in the resulting table
  * are @c const @c char*, the values are @c svn_string_t*. Null values
  * in the Java map will not appear in the converted map.
@@ -70,7 +70,7 @@ apr_hash_t*
 make_property_hash(::Java::Env env, jobject jproperties, apr_pool_t* pool);
 
 /**
- * Converts property/value pairs the Java map @a jkeywords to an APR
+ * Converts property/value pairs the Java map @a jproperties to an APR
  * hash table allocated in @a pool. The keys in the resulting table
  * are @c const @c char*, the values are @c svn_string_t*. Null values
  * in the Java map will not appear in the converted map.