Author: julianfoad
Date: Fri Apr 13 08:36:20 2012
New Revision: 1325652
URL: http://svn.apache.org/viewvc?rev=1325652&view=rev
Log:
* subversion/libsvn_fs_fs/temp_serializer.h,
subversion/libsvn_fs_fs/temp_serializer.c
(svn_fs_fs__combine_number_and_string, svn_fs_fs__combine_two_numbers):
Remove duplicate doc strings from definition, and tweak grammar.
Modified:
subversion/trunk/subversion/libsvn_fs_fs/temp_serializer.c
subversion/trunk/subversion/libsvn_fs_fs/temp_serializer.h
Modified: subversion/trunk/subversion/libsvn_fs_fs/temp_serializer.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/temp_serializer.c?rev=1325652&r1=1325651&r2=1325652&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/temp_serializer.c (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/temp_serializer.c Fri Apr 13
08:36:20 2012
@@ -64,10 +64,6 @@ encode_number(apr_int64_t number, char *
return key_buffer;
}
-/* Prepend the NUMBER to the STRING in a space efficient way that no other
- * (number,string) combination can produce the same result.
- * Allocate temporaries as well as the result from POOL.
- */
const char*
svn_fs_fs__combine_number_and_string(apr_int64_t number,
const char *string,
@@ -91,10 +87,6 @@ svn_fs_fs__combine_number_and_string(apr
return key;
}
-/* Combine the numbers A and B a space efficient way that no other
- * combination of numbers can produce the same result.
- * Allocate temporaries as well as the result from POOL.
- */
const char*
svn_fs_fs__combine_two_numbers(apr_int64_t a,
apr_int64_t b,
Modified: subversion/trunk/subversion/libsvn_fs_fs/temp_serializer.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/temp_serializer.h?rev=1325652&r1=1325651&r2=1325652&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_fs/temp_serializer.h (original)
+++ subversion/trunk/subversion/libsvn_fs_fs/temp_serializer.h Fri Apr 13
08:36:20 2012
@@ -26,7 +26,7 @@
#include "fs.h"
/**
- * Prepend the @a number to the @a string in a space efficient way that
+ * Prepend the @a number to the @a string in a space efficient way such that
* no other (number,string) combination can produce the same result.
* Allocate temporaries as well as the result from @a pool.
*/
@@ -36,8 +36,8 @@ svn_fs_fs__combine_number_and_string(apr
apr_pool_t *pool);
/**
- * Combine the numbers @a a and @a b a space efficient way that no other
- * combination of numbers can produce the same result.
+ * Combine the numbers @a a and @a b in a space efficient way such that no
+ * other combination of numbers can produce the same result.
* Allocate temporaries as well as the result from @a pool.
*/
const char*