summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2022-05-15 21:23:48 +0200
committerKN4CK3R <admin@oldschoolhack.me>2022-05-15 23:43:50 +0200
commitf4d7c32058c0fff8b1db27a4876963f3d65e012f (patch)
treedbef8f5cb077adeeb3704cca50b1d7ee81ac719f /docs
parent39708849a28823a88bc0c56a244733453da2257d (diff)
Fix typos (#6688)
fix typos Co-authored-by: Thomas Waldmann <tw@waldmann-edv.de>
Diffstat (limited to 'docs')
-rw-r--r--docs/changes.rst8
-rw-r--r--docs/faq.rst2
-rw-r--r--docs/internals/frontends.rst6
3 files changed, 8 insertions, 8 deletions
diff --git a/docs/changes.rst b/docs/changes.rst
index 5d4e55e4..2c989bdd 100644
--- a/docs/changes.rst
+++ b/docs/changes.rst
@@ -543,7 +543,7 @@ Other changes:
- add examples for --paths-from-stdin, --paths-from-command, --paths-separator, #5644
- fix typos/grammar
- update docs for dev environment installation instructions
- - recomend running tests only on installed versions for setup
+ - recommend running tests only on installed versions for setup
- add badge with current status of package
- vagrant:
@@ -1172,7 +1172,7 @@ Other changes:
- use macFUSE (not osxfuse) for Apple M1 compatibility
- update docs for dev environment installation instructions, #5643
- fix grammar in faq
- - recomend running tests only on installed versions for setup
+ - recommend running tests only on installed versions for setup
- add link back to git-installation
- remove /var/cache exclusion in example commands, #5625.
This is generally a poor idea and shouldn't be promoted through examples.
@@ -3185,7 +3185,7 @@ Other changes:
cryptohash for dedupe, so people don't worry, #2390
- add hint about chunker params to borg upgrade docs, #2421
- clarify borg upgrade docs, #2436
- - quickstart: delete problematic BORG_PASSPRHASE use, #2623
+ - quickstart: delete problematic BORG_PASSPHRASE use, #2623
- faq: specify "using inline shell scripts"
- document pattern denial of service, #2624
- tests:
@@ -3925,7 +3925,7 @@ Bug fixes:
Makes --cache-only idempotent: it won't fail if the cache is already deleted.
- fixed borg create --one-file-system erroneously traversing into other
filesystems (if starting fs device number was 0), #873
-- workround a bug in Linux fadvise FADV_DONTNEED, #907
+- workaround a bug in Linux fadvise FADV_DONTNEED, #907
Other changes:
diff --git a/docs/faq.rst b/docs/faq.rst
index 5a14059e..d1af43b4 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -726,7 +726,7 @@ Since the nonce is not necessary to read the data that is already encrypted,
``borg info``, ``borg list``, ``borg extract`` and ``borg mount`` should work
just fine without it.
-If the the nonce file stored in the repo is lost, but you still have your local copy,
+If the nonce file stored in the repo is lost, but you still have your local copy,
borg will recreate the repository nonce file the next time you run ``borg create``.
This should be safe for repositories that are only used from one user account
on one machine.
diff --git a/docs/internals/frontends.rst b/docs/internals/frontends.rst
index 9e093c6b..8ff5ff47 100644
--- a/docs/internals/frontends.rst
+++ b/docs/internals/frontends.rst
@@ -10,7 +10,7 @@ Borg does not have a public API on the Python level. That does not keep you from
but does mean that there are no release-to-release guarantees on what you might find in that package, not
even for point releases (1.1.x), and there is no documentation beyond the code and the internals documents.
-Borg does on the other hand provide an API on a command-line level. In other words, a frontend should to
+Borg does on the other hand provide an API on a command-line level. In other words, a frontend should
(for example) create a backup archive just invoke :ref:`borg_create`, give commandline parameters/options
as needed and parse JSON output from borg.
@@ -465,13 +465,13 @@ changes:
A list of *Change* objects describing the changes made to the item in the two archives. For example,
there will be two changes if the contents of a file are changed, and its ownership are changed.
-The *Change* object can contain a number of properties depending on the type of change that occured.
+The *Change* object can contain a number of properties depending on the type of change that occurred.
If a 'property' is not required for the type of change, it is not output.
The possible properties of a *Change* object are:
type:
The **type** property is always present. It identifies the type of change and will be one of these values:
-
+
- *modified* - file contents changed.
- *added* - the file was added.
- *removed* - the file was removed.