Author: stefan2
Date: Wed Jun 5 11:21:58 2013
New Revision: 1489813
URL: http://svn.apache.org/r1489813
Log:
On the fsfs-format7 branch: ERMAHGERD! Terpers!
No functional change.
* subversion/libsvn_fs_fs/changes.c
(svn_fs_fs__read_changes_container): copy'n'pasto in comment
* subversion/libsvn_fs_fs/pack.c
(rep_info_t,
copy_node_to_temp): typos in comments
Modified:
subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/changes.c
subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/pack.c
Modified: subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/changes.c
URL:
http://svn.apache.org/viewvc/subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/changes.c?rev=1489813&r1=1489812&r2=1489813&view=diff
==============================================================================
--- subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/changes.c
(original)
+++ subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/changes.c Wed Jun
5 11:21:58 2013
@@ -385,7 +385,7 @@ svn_fs_fs__read_changes_container(svn_fs
svn_packed__int_stream_t *offsets_stream;
svn_packed__int_stream_t *changes_stream;
- /* write from disk */
+ /* read from disk */
SVN_ERR(svn_fs_fs__read_string_table(&changes->paths, stream,
result_pool, scratch_pool));
Modified: subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/pack.c
URL:
http://svn.apache.org/viewvc/subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/pack.c?rev=1489813&r1=1489812&r2=1489813&view=diff
==============================================================================
--- subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/pack.c (original)
+++ subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/pack.c Wed Jun 5
11:21:58 2013
@@ -91,7 +91,7 @@ typedef struct rep_info_t
/* given a typical tree traversal, this item will probably be requested
* soon after ENTRY. So, place it near the current item. May be NULL.
- * If this is set on a noderev item, it links to a sibbling. On a
+ * If this is set on a noderev item, it links to a sibling. On a
* representation item, it links to sub-directory entries. */
struct rep_info_t *next;
} rep_info_t;
@@ -667,7 +667,7 @@ copy_node_to_temp(pack_context_t *contex
/* link all items in sorted order.
* This may overwrite existing linkage from older revisions. But we
* place data starting with the latest revision, it is only older
- * data that looses some of its coherence.
+ * data that loses some of its coherence.
*/
for (i = 0; i < sorted->nelts; ++i)
{