Author: julianfoad
Date: Thu Nov 29 20:22:48 2012
New Revision: 1415356
URL: http://svn.apache.org/viewvc?rev=1415356&view=rev
Log:
* subversion/svn/props.c
Fix typos in comments.
Modified:
subversion/trunk/subversion/svn/props.c
Modified: subversion/trunk/subversion/svn/props.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/props.c?rev=1415356&r1=1415355&r2=1415356&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/props.c (original)
+++ subversion/trunk/subversion/svn/props.c Thu Nov 29 20:22:48 2012
@@ -231,13 +231,13 @@ svn_cl__check_boolean_prop_val(const cha
struct simprop_context_t
{
svn_string_t name; /* The name of the property we're comparing with */
- svn_membuf_t buffer; /* Buffer for similariry testing */
+ svn_membuf_t buffer; /* Buffer for similarity testing */
};
struct simprop_t
{
const char *propname; /* The original svn: property name */
- svn_string_t name; /* The property name without the svn: prefx */
+ svn_string_t name; /* The property name without the svn: prefix */
unsigned int score; /* The similarity score */
apr_size_t diff; /* Number of chars different from context.name */
struct simprop_context_t *context; /* Sorting context for qsort() */
@@ -344,7 +344,7 @@ svn_cl__check_svn_prop_name(const char *
}
}
- /* Now find the closest match from amongst a the set of reserved
+ /* Now find the closest match from amongst the set of reserved
node or revision property names. Skip the prefix while matching,
we already know that it's the same and looking at it would only
skew the results. */