@@ -8,7 +8,7 @@ The Concepts
88------------
99
1010The revision store uses Git in the way of its original slogan, as a
11- content-adressable file system. A lot of data (code) and meta-data (opam files)
11+ content-addressable file system. A lot of data (code) and meta-data (opam files)
1212is stored in Git repositories that are often forked from each other, hence to
1313save space Dune has a Git object cache.
1414
@@ -47,7 +47,7 @@ background. The store should always work like a cache that can be discarded
4747safely without causing data loss.
4848
4949The revision store should always give out the most recent version of data,
50- unless explicitely instructed otherwise. This means that :
50+ unless explicitly instructed otherwise. This means that :
5151
5252 * If only a Git source is specified, then the revision store will
5353 automatically get the newest revision
@@ -68,7 +68,7 @@ Support for other kinds of VCSes is a possible extension by replicating similar
6868concepts with other version control systems, provided they allow for similar
6969flexibility as the Git way of storing revisions. However at the moment most
7070users have settled on using Git, hence this version should be able to
71- accomodate the needs for most users.
71+ accommodate the needs for most users.
7272
7373Another compromise is that old repositories with long histories and large sizes
7474have to be cloned before use, thus increasing the size of the initial download
@@ -97,7 +97,7 @@ one particular revision would be a waste of disk space as the Git tooling can
9797be used to construct any revisions out of the bare repository anyway.
9898
9999Thus every source that is added to the revision store as a remote that tracks
100- the default branch (or, if a branch is specified explicitely , then that
100+ the default branch (or, if a branch is specified explicitly , then that
101101branch) and fetched, thus storing the required revisions in the revision store.
102102
103103The implementation of these features is a mix of calling the ` git ` binary and
0 commit comments