diff options
author | Edward Betts <edward@4angle.com> | 2017-10-26 07:52:20 +0100 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2017-10-26 10:51:17 -0400 |
commit | a8b47b0a253f09029747e751c796792d5edb1bbe (patch) | |
tree | a027d1662359c16c51e2845fcd65ad7b209f551c | |
parent | f14a35cc1231ceb3d5af4377594696fae18f0520 (diff) |
correct spelling mistakes
A few spelling fixes for the git-annex devblog.
-rw-r--r-- | doc/devblog/day_452__GIT_SSH.mdwn | 2 | ||||
-rw-r--r-- | doc/devblog/day_463-465__back_buggy_external_special_remotes.mdwn | 2 | ||||
-rw-r--r-- | doc/devblog/day_472__removing_empty_directories.mdwn | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/devblog/day_452__GIT_SSH.mdwn b/doc/devblog/day_452__GIT_SSH.mdwn index 7ba94dff8..a1ce5cfad 100644 --- a/doc/devblog/day_452__GIT_SSH.mdwn +++ b/doc/devblog/day_452__GIT_SSH.mdwn @@ -7,7 +7,7 @@ suites should not do. So, I took a detour.. Support for `GIT_SSH` and `GIT_SSH_COMMAND` has been requested before for various reasons. So I implemented that, which took 4 hours. (With one -little possible compatability caveat, since git-annex needs to pass the -n +little possible compatibility caveat, since git-annex needs to pass the -n parameter to ssh sometimes, and git's interface doesn't allow for such a parameter.) diff --git a/doc/devblog/day_463-465__back_buggy_external_special_remotes.mdwn b/doc/devblog/day_463-465__back_buggy_external_special_remotes.mdwn index 413e99e1e..f374a51cb 100644 --- a/doc/devblog/day_463-465__back_buggy_external_special_remotes.mdwn +++ b/doc/devblog/day_463-465__back_buggy_external_special_remotes.mdwn @@ -10,7 +10,7 @@ run to vary what remotes are used depending on eg, what network it's on. Also, I took a look at the external special remote protocol, and noticed two problems with it. First, keys with spaces in their names can't be used -with it. This only affects the WORM backend, and it seems noone has ever +with it. This only affects the WORM backend, and it seems no one has ever run into the problem. Rather than complicate the implementation of external special remotes, I decided to deprecate having spaces in key names. Which is just asking for trouble anyway. So now there's a nice error message, and diff --git a/doc/devblog/day_472__removing_empty_directories.mdwn b/doc/devblog/day_472__removing_empty_directories.mdwn index 563a347c3..25b36fd86 100644 --- a/doc/devblog/day_472__removing_empty_directories.mdwn +++ b/doc/devblog/day_472__removing_empty_directories.mdwn @@ -8,7 +8,7 @@ So, I decided to add a remote method to delete a directory, and make git-annex keep track of when a directory in an export is empty, and delete it. While it does complicate the design some to need to do this, that seems better than complicating the implementation of remotes like webdav. And -some remotes may not have a `rmdir(2)` equivilant or a way to check if a +some remotes may not have a `rmdir(2)` equivalent or a way to check if a directory is empty. Spent most of today implementing that, including some rather hairy |