Project: Subversion
Revision: 32927
Author: arfrever
Date: 05 Sep 2008 10:18:07
Changes:Fix typos in comments.
* subversion/libsvn_client/cmdline.c
(resolve_repos_relative_url):
* subversion/libsvn_repos/load.c
(new_revision_record):
* subversion/libsvn_wc/merge.c
(svn_wc__merge_internal):
* subversion/svnadmin/main.c
(main):
* subversion/svndumpfilter/main.c
(main):
* subversion/svnlook/main.c
(main):
* subversion/svn/main.c
(main):
* subversion/svnversion/main.c
(main): Fix typos in comments.
Files:modified: /trunk/subversion/svnlook/main.c (
try)
modified: /trunk/subversion/svnversion/main.c (
try)
modified: /trunk/subversion/svnadmin/main.c (
try)
modified: /trunk/subversion/libsvn_repos/load.c (
try)
modified: /trunk/subversion/libsvn_wc/merge.c (
try)
modified: /trunk/subversion/libsvn_client/cmdline.c (
try)
modified: /trunk/subversion/svndumpfilter/main.c (
try)
modified: /trunk/subversion/svn/main.c (
try)
Diff:
| ... | ...@@ -2074,7 +2074,7 @@ |
| 2074 | 2074 | if (svn_cmdline_init("svnlook", stderr) != EXIT_SUCCESS) |
| 2075 | 2075 | return EXIT_FAILURE; |
| 2076 | 2076 | |
| 2077 | | /* Create our top-level pool. Use a seperate mutexless allocator, |
| 2077 | /* Create our top-level pool. Use a separate mutexless allocator, |
| 2078 | 2078 | * given this application is single threaded. |
| 2079 | 2079 | */ |
| 2080 | 2080 | if (apr_allocator_create(&allocator)) |
| ... | ...@@ -1,6 +1,6 @@ |
| 1 | 1 | /* |
| 2 | 2 | * ==================================================================== |
| 3 | | * Copyright (c) 2003-2007 CollabNet. All rights reserved. |
| 3 | * Copyright (c) 2003-2008 CollabNet. All rights reserved. |
| 4 | 4 | * |
| 5 | 5 | * This software is licensed as described in the file COPYING, which |
| 6 | 6 | * you should have received as part of this distribution. The terms |
| ... | ...@@ -132,7 +132,7 @@ |
| 132 | 132 | if (svn_cmdline_init("svnversion", stderr) != EXIT_SUCCESS) |
| 133 | 133 | return EXIT_FAILURE; |
| 134 | 134 | |
| 135 | | /* Create our top-level pool. Use a seperate mutexless allocator, |
| 135 | /* Create our top-level pool. Use a separate mutexless allocator, |
| 136 | 136 | * given this application is single threaded. |
| 137 | 137 | */ |
| 138 | 138 | if (apr_allocator_create(&allocator)) |
| ... | ...@@ -1388,7 +1388,7 @@ |
| 1388 | 1388 | if (svn_cmdline_init("svnadmin", stderr) != EXIT_SUCCESS) |
| 1389 | 1389 | return EXIT_FAILURE; |
| 1390 | 1390 | |
| 1391 | | /* Create our top-level pool. Use a seperate mutexless allocator, |
| 1391 | /* Create our top-level pool. Use a separate mutexless allocator, |
| 1392 | 1392 | * given this application is single threaded. |
| 1393 | 1393 | */ |
| 1394 | 1394 | if (apr_allocator_create(&allocator)) |
| ... | ...@@ -1,7 +1,7 @@ |
| 1 | 1 | /* load.c --- parsing a 'dumpfile'-formatted stream. |
| 2 | 2 | * |
| 3 | 3 | * ==================================================================== |
| 4 | | * Copyright (c) 2000-2006 CollabNet. All rights reserved. |
| 4 | * Copyright (c) 2000-2006, 2008 CollabNet. All rights reserved. |
| 5 | 5 | * |
| 6 | 6 | * This software is licensed as described in the file COPYING, which |
| 7 | 7 | * you should have received as part of this distribution. The terms |
| ... | ...@@ -972,7 +972,7 @@ |
| 972 | 972 | SVN_ERR(svn_fs_youngest_rev(&head_rev, pb->fs, pool)); |
| 973 | 973 | |
| 974 | 974 | /* FIXME: This is a lame fallback loading multiple segments of dump in |
| 975 | | several seperate operations. It is highly susceptible to race conditions. |
| 975 | several separate operations. It is highly susceptible to race conditions. |
| 976 | 976 | Calculate the revision 'offset' for finding copyfrom sources. |
| 977 | 977 | It might be positive or negative. */ |
| 978 | 978 | rb->rev_offset = (rb->rev) - (head_rev + 1); |
| ... | ...@@ -383,7 +383,7 @@ |
| 383 | 383 | left_marker, |
| 384 | 384 | target_marker, |
| 385 | 385 | right_marker, |
| 386 | | "=======", /* seperator */ |
| 386 | "=======", /* separator */ |
| 387 | 387 | svn_diff_conflict_display_modified_latest, |
| 388 | 388 | pool)); |
| 389 | 389 | SVN_ERR(svn_stream_close(ostream)); |
| ... | ...@@ -74,7 +74,7 @@ |
| 74 | 74 | |
| 75 | 75 | /* No assumptions are made about the canonicalization of the input |
| 76 | 76 | * arguments, it is presumed that the output will be canonicalized after |
| 77 | | * this function, which will remove any duplicate path seperator. |
| 77 | * this function, which will remove any duplicate path separator. |
| 78 | 78 | */ |
| 79 | 79 | *absolute_url = apr_pstrcat(pool, repos_root_url, relative_url + 1, NULL); |
| 80 | 80 | |
| ... | ...@@ -1198,7 +1198,7 @@ |
| 1198 | 1198 | if (svn_cmdline_init("svndumpfilter", stderr) != EXIT_SUCCESS) |
| 1199 | 1199 | return EXIT_FAILURE; |
| 1200 | 1200 | |
| 1201 | | /* Create our top-level pool. Use a seperate mutexless allocator, |
| 1201 | /* Create our top-level pool. Use a separate mutexless allocator, |
| 1202 | 1202 | * given this application is single threaded. |
| 1203 | 1203 | */ |
| 1204 | 1204 | if (apr_allocator_create(&allocator)) |
| ... | ...@@ -1036,7 +1036,7 @@ |
| 1036 | 1036 | if (svn_cmdline_init("svn", stderr) != EXIT_SUCCESS) |
| 1037 | 1037 | return EXIT_FAILURE; |
| 1038 | 1038 | |
| 1039 | | /* Create our top-level pool. Use a seperate mutexless allocator, |
| 1039 | /* Create our top-level pool. Use a separate mutexless allocator, |
| 1040 | 1040 | * given this application is single threaded. |
| 1041 | 1041 | */ |
| 1042 | 1042 | if (apr_allocator_create(&allocator)) |
To list