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

svn commit: r1748031 - /subversion/branches/authzperf/subversion/libsvn_repos/authz.c

Author: stefan2
Date: Sun Jun 12 17:47:27 2016
New Revision: 1748031

URL: http://svn.apache.org/viewvc?rev=1748031&view=rev
Log:
On the authzperf branch:
Docstring fixes.  No functional change.

* subversion/libsvn_repos/authz.c
  (insert_path,
   process_acl): Fix typos.

Modified:
    subversion/branches/authzperf/subversion/libsvn_repos/authz.c

Modified: subversion/branches/authzperf/subversion/libsvn_repos/authz.c
URL: http://svn.apache.org/viewvc/subversion/branches/authzperf/subversion/libsvn_repos/authz.c?rev=1748031&r1=1748030&r2=1748031&view=diff
==============================================================================
--- subversion/branches/authzperf/subversion/libsvn_repos/authz.c (original)
+++ subversion/branches/authzperf/subversion/libsvn_repos/authz.c Sun Jun 12 17:47:27 2016
@@ -324,7 +324,7 @@ create_construction_context(apr_pool_t *
 /* Constructor utility:  Below NODE, recursively insert sub-nodes for the
  * path given as *SEGMENTS of length SEGMENT_COUNT. If matching nodes
  * already exist, use those instead of creating new ones.  Set the leave
- * node's access rights spec to ACCESS.  Update the conext info in CTX.
+ * node's access rights spec to ACCESS.  Update the context info in CTX.
  */
 static void
 insert_path(construction_context_t *ctx,
@@ -454,7 +454,7 @@ process_acl(construction_context_t *ctx,
   access.sequence_number = acl->sequence_number;
 
   /* Try to reuse results from previous runs.
-   * Basically, skip the commen prefix. */
+   * Basically, skip the common prefix. */
   node = root;
   for (i = 0; i < ctx->path->nelts; ++i)
     {