Skip to content

Commit 37766a2

Browse files
authored
README.md: fix typos (#93)
1 parent ac4d442 commit 37766a2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ tree_hash([ predicate, ] tarball;
163163
* `skip_empty :: Bool`
164164

165165
Compute a tree hash value for the file tree that the tarball contains. By
166-
default, this uses git's tree hashing algorigthm with the SHA1 secure hash
166+
default, this uses git's tree hashing algorithm with the SHA1 secure hash
167167
function (like current versions of git). This means that for any tarball whose
168168
file tree git can represent—i.e. one with only files, symlinks and non-empty
169169
directories—the hash value computed by this function will be the same as the
@@ -188,7 +188,7 @@ using in the future (due to known attacks on SHA1). Support for other file tree
188188
hashing algorithms may be added in the future.
189189

190190
The `skip_empty` option controls whether directories in the tarball which
191-
recursiviely contain no files or symlinks are included in the hash or ignored.
191+
recursively contain no files or symlinks are included in the hash or ignored.
192192
In general, if you are hashing the content of a tarball or a file tree, you care
193193
about all directories, not just non-empty ones, so including these in the
194194
computed hash is the default. So why does this function even provide the option

src/Tar.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ end
275275
skip_empty :: Bool
276276
277277
Compute a tree hash value for the file tree that the tarball contains. By
278-
default, this uses git's tree hashing algorigthm with the SHA1 secure hash
278+
default, this uses git's tree hashing algorithm with the SHA1 secure hash
279279
function (like current versions of git). This means that for any tarball whose
280280
file tree git can represent—i.e. one with only files, symlinks and non-empty
281281
directories—the hash value computed by this function will be the same as the
@@ -300,7 +300,7 @@ using in the future (due to known attacks on SHA1). Support for other file tree
300300
hashing algorithms may be added in the future.
301301
302302
The `skip_empty` option controls whether directories in the tarball which
303-
recursiviely contain no files or symlinks are included in the hash or ignored.
303+
recursively contain no files or symlinks are included in the hash or ignored.
304304
In general, if you are hashing the content of a tarball or a file tree, you care
305305
about all directories, not just non-empty ones, so including these in the
306306
computed hash is the default. So why does this function even provide the option

0 commit comments

Comments
 (0)