Author: julianfoad
Date: Mon Jun 29 14:47:44 2015
New Revision: 1688243

URL: http://svn.apache.org/r1688243
Log:
On the 'move-tracking-2' branch: Tweak a doc string.

* subversion/include/private/svn_branch.h
  (svn_branch_get_id): Document the id format. Move to a better position in
    the file.

Modified:
    subversion/branches/move-tracking-2/subversion/include/private/svn_branch.h

Modified: 
subversion/branches/move-tracking-2/subversion/include/private/svn_branch.h
URL: 
http://svn.apache.org/viewvc/subversion/branches/move-tracking-2/subversion/include/private/svn_branch.h?rev=1688243&r1=1688242&r2=1688243&view=diff
==============================================================================
--- subversion/branches/move-tracking-2/subversion/include/private/svn_branch.h 
(original)
+++ subversion/branches/move-tracking-2/subversion/include/private/svn_branch.h 
Mon Jun 29 14:47:44 2015
@@ -328,6 +328,21 @@ svn_branch_state_create(int root_eid,
                         int outer_eid,
                         apr_pool_t *result_pool);
 
+/* Get the full id of branch BRANCH.
+ *
+ * Branch id format:
+ *      B<top-level-branch-num>[.<1st-level-eid>[.<2nd-level-eid>[...]]]
+ *
+ * Note: a branch id is, in behavioural terms, an arbitrary token. In the
+ * current implementation it is constructed from the hierarchy of subbranch
+ * root EIDs leading to the branch, but that may be changed in future.
+ *
+ * See also: svn_branch_revision_root_get_branch_by_id().
+ */
+const char *
+svn_branch_get_id(svn_branch_state_t *branch,
+                  apr_pool_t *result_pool);
+
 /* Create a new branch at OUTER_BRANCH:OUTER_EID, with no elements
  * (not even a root element).
  *
@@ -767,18 +782,6 @@ svn_branch_branch(svn_branch_state_t **n
                   const char *new_name,
                   apr_pool_t *scratch_pool);
 
-/* Get the full id of branch BRANCH.
- *
- * Note: a branch id is, in behavioural terms, an arbitrary token. In the
- * current implementation it is constructed from the hierarchy of subbranch
- * root EIDs leading to the branch, but that may be changed in future.
- *
- * See also: svn_branch_revision_root_get_branch_by_id().
- */
-const char *
-svn_branch_get_id(svn_branch_state_t *branch,
-                  apr_pool_t *result_pool);
-
 
 #ifdef __cplusplus
 }


Reply via email to