1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
Description: Fix typos
Author: Philippe SWARTVAGHER <phil.swart@gmx.fr>
Last-Update: 2024-05-12
Forwarded: https://github.com/rocky/libcdio-paranoia/pull/43
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
diff --git a/doc/en/cd-paranoia.1.in b/doc/en/cd-paranoia.1.in
index ac391dc..6dc5229 100644
--- a/doc/en/cd-paranoia.1.in
+++ b/doc/en/cd-paranoia.1.in
@@ -319,7 +319,7 @@ sectors (75 sectors per second).
.P
When only a single offset is supplied, it is interpreted as a starting
offset and ripping will continue to the end of the track. If a single
-offset is preceeded or followed by a hyphen, the implicit missing
+offset is preceded or followed by a hyphen, the implicit missing
offset is taken to be the start or end of the disc, respectively. Thus:
.TP
@@ -339,7 +339,7 @@ Specifies ripping from the beginning of the disc up to 2:[30.35]
.B 2-4
Specifies ripping from the beginning of track 2 to the end of track 4.
.P
-Again, don't forget to protect square brackets and preceeding hyphens from
+Again, don't forget to protect square brackets and preceding hyphens from
the shell.
.SH EXAMPLES
diff --git a/lib/paranoia/paranoia.c b/lib/paranoia/paranoia.c
index 4175723..3ef7034 100644
--- a/lib/paranoia/paranoia.c
+++ b/lib/paranoia/paranoia.c
@@ -1996,7 +1996,7 @@ i_stage2_each(root_block *root, v_fragment_t *v,
* not be so dire if we're near sample 0. To be investigated."
* In the begin case, any start position is arbitrary due to
* inexact seeking. Later, we can't back-extend the root as the
- * samples preceeding the beginning have already been returned
+ * samples preceding the beginning have already been returned
* to the application! --Monty
*/
{
diff --git a/src/usage.txt.in b/src/usage.txt.in
index 08d424e..4e1e96d 100644
--- a/src/usage.txt.in
+++ b/src/usage.txt.in
@@ -18,7 +18,7 @@ OPTIONS:
-V --version : print version info and quit
-Q --query : autosense drive, query disc and quit
-B --batch : 'batch' mode (saves each track to a
- seperate file.
+ separate file.
-s --search-for-drive : do an exhaustive search for drive
-h --help : print help
@@ -100,7 +100,7 @@ sectors (75 sectors per second).
When only a single offset is supplied, it is interpreted as a starting
offset and ripping will continue to the end of he track. If a single
-offset is preceeded or followed by a hyphen, the implicit missing
+offset is preceded or followed by a hyphen, the implicit missing
offset is taken to be the start or end of the disc, respectively. Thus:
1:[20.35] Specifies ripping from track 1, second 20, sector 35 to
@@ -117,7 +117,7 @@ offset is taken to be the start or end of the disc, respectively. Thus:
2-4 Specifies ripping from the beginning of track two to the
end of track 4.
-Don't forget to protect square brackets and preceeding hyphens from
+Don't forget to protect square brackets and preceding hyphens from
the shell...
A few examples, protected from the shell:
|