Skip to content

Commit c7686f2

Browse files
committed
slightly edit, update and run typos.sh
Signed-off-by: Steffen Jaeckel <[email protected]>
1 parent ae0c9cb commit c7686f2

26 files changed

+70
-69
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ endif()
6161
# What compiler do we have and what are their...uhm... peculiarities
6262
if(CMAKE_C_COMPILER_ID MATCHES "(C|c?)lang")
6363
list(APPEND LTM_C_FLAGS -Wno-typedef-redefinition -Wno-tautological-compare -Wno-builtin-requires-header)
64-
# Clang requires at least '-O1' for dead code eliminiation
64+
# Clang requires at least '-O1' for dead code elimination
6565
set(CMAKE_C_FLAGS_DEBUG "-O1 ${CMAKE_C_FLAGS_DEBUG}")
6666
endif()
6767
if(CMAKE_C_COMPILER MATCHES "mingw")

astylerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# usage:
55
# astyle --options=astylerc *.[ch]
66

7-
# Do not create backup, annonying in the times of git
7+
# Do not create backup, annoying in the times of git
88
suffix=none
99

1010
## Bracket Style Options

changes.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ v1.2.0
1919
-- Unified, safer and improved API's
2020
-- Less magic numbers - return values (where appropriate) and most flags are now enums,
2121
this was implemented in a backwards compatible way where return values were int.
22-
-- API's with return values are now by default marked as "warn on unsused result", this
22+
-- API's with return values are now by default marked as "warn on unused result", this
2323
can be disabled if required (which will most likely hide bugs), c.f. MP_WUR in tommath.h
2424
-- Provide a whole set of setters&getters for different primitive types (long, uint32_t, etc.)
2525
-- All those primitive setters are now optimized.
@@ -412,8 +412,8 @@ v0.13 -- tons of minor speed-ups in low level add, sub, mul_2 and div_2 which p
412412
Jan 17th, 2003
413413
v0.12 -- re-wrote the majority of the makefile so its more portable and will
414414
install via "make install" on most *nix platforms
415-
-- Re-packaged all the source as seperate files. Means the library a single
416-
file packagage any more. Instead of just adding "bn.c" you have to add
415+
-- Re-packaged all the source as separate files. Means the library a single
416+
file package any more. Instead of just adding "bn.c" you have to add
417417
libtommath.a
418418
-- Renamed "bn.h" to "tommath.h"
419419
-- Changes to the manual to reflect all of this
@@ -444,7 +444,7 @@ v0.08 -- Sped up the multipliers by moving the inner loop variables into a smal
444444
-- add etc/pprime.c program which makes numbers which are provably prime.
445445

446446
Jan 1st, 2003
447-
v0.07 -- Removed alot of heap operations from core functions to speed them up
447+
v0.07 -- Removed a lot of heap operations from core functions to speed them up
448448
-- Added a root finding function [and mp_sqrt macro like from MPI]
449449
-- Added more to manual
450450

demo/mtest_opponent.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ static int mtest_opponent(void)
8282
#endif
8383

8484
for (;;) {
85-
/* randomly clear and re-init one variable, this has the affect of triming the alloc space */
85+
/* randomly clear and re-init one variable, this has the effect of trimming the alloc space */
8686
switch (abs(rand()) % 7) {
8787
case 0:
8888
mp_clear(&a);

demo/test.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1548,7 +1548,7 @@ static int test_mp_decr(void)
15481548
default(realprecision,1000);
15491549
for(n=3,100,r = floor(a^(1/n));printf("\"" r "\", "))
15501550
1551-
All numbers as strings to simplifiy things, especially for the
1551+
All numbers as strings to simplify things, especially for the
15521552
low-mp branch.
15531553
*/
15541554

@@ -2166,7 +2166,7 @@ static int test_mp_pack_unpack(void)
21662166
uint8_t *buf = NULL;
21672167

21682168
mp_order order = MP_LSB_FIRST;
2169-
mp_endian endianess = MP_NATIVE_ENDIAN;
2169+
mp_endian endianness = MP_NATIVE_ENDIAN;
21702170

21712171
DOR(mp_init_multi(&a, &b, NULL));
21722172
DO(mp_rand(&a, 15));
@@ -2180,9 +2180,9 @@ static int test_mp_pack_unpack(void)
21802180
}
21812181

21822182
DO(mp_pack((void *)buf, count, &written, order, 1uL,
2183-
endianess, 0uL, &a));
2183+
endianness, 0uL, &a));
21842184
DO(mp_unpack(&b, count, order, 1uL,
2185-
endianess, 0uL, (const void *)buf));
2185+
endianness, 0uL, (const void *)buf));
21862186

21872187
if (mp_cmp(&a, &b) != MP_EQ) {
21882188
fprintf(stderr, "pack/unpack cycle failed\n");

doc/bn.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ \subsubsection{OpenBSD}
210210
At this time two versions of \texttt{libtool} are installed and both are named \texttt{libtool},
211211
unfortunately but GNU \texttt{libtool} has been placed in \texttt{/usr/local/bin/} and the native
212212
version in \texttt{/usr/bin/}. The path might be different in other versions of OpenBSD but both
213-
programms differ in the output of \texttt{libtool --version}
213+
programs differ in the output of \texttt{libtool --version}
214214
\begin{alltt}
215215
$ /usr/local/bin/libtool --version
216216
libtool (GNU libtool) 2.4.2
@@ -519,7 +519,7 @@ \subsection{Single Initialization}
519519
\end{alltt}
520520

521521
This function expects a pointer to an \texttt{mp\_int} structure and will initialize the members
522-
ofthe structure so the \texttt{mp\_int} represents the default integer which is zero. If the
522+
of the structure so the \texttt{mp\_int} represents the default integer which is zero. If the
523523
functions returns \texttt{MP\_OKAY} then the \texttt{mp\_int} is ready to be used by the other
524524
LibTomMath functions.
525525

@@ -2213,7 +2213,7 @@ \subsection{Required Number of Tests}
22132213
Determining the probability needed to pick the right column is a bit harder. Fips 186.4, for
22142214
example has $2^{-80}$ for $512$ bit large numbers, $2^{-112}$ for $1024$ bits, and $2^{128}$ for
22152215
$1536$ bits. It can be seen in table \ref{table:millerrabinrunsp1} that those combinations follow
2216-
the diagonal from $(512,2^{-80})$ downwards and to the right to gain a lower probabilty of getting
2216+
the diagonal from $(512,2^{-80})$ downwards and to the right to gain a lower probability of getting
22172217
a composite declared a pseudoprime for the same amount of work or less.
22182218

22192219
If this version of the library has the strong Lucas--Selfridge and/or the Frobenius--Underwood test

doc/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ manual: mandvi
4040

4141
# The file latexindent.pl is in several LaTeX distributions, if not:
4242
# https://ctan.org/pkg/latexindent
43-
# Its configuraion is well documented
43+
# Its configuration is well documented
4444
# http://mirrors.ctan.org/support/latexindent/documentation/latexindent.pdf
4545
pretty:
4646
latexindent -s -w -m -l=.latexindent.yaml bn.tex

logs/before_after.dem

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ plot 'sqr-before.log' smooth bezier title "Squaring (without Karatsuba) (before)
2323
set output "expt-ba.png"
2424
plot 'expt-before.log' smooth bezier title "Exptmod (Montgomery) (before)", \
2525
'expt-after.log' smooth bezier title "Exptmod (Montgomery) (after)", \
26-
'expt_dr-before.log' smooth bezier title "Exptmod (Dimminished Radix) (before)", \
27-
'expt_dr-after.log' smooth bezier title "Exptmod (Dimminished Radix) (after)", \
26+
'expt_dr-before.log' smooth bezier title "Exptmod (Diminished Radix) (before)", \
27+
'expt_dr-after.log' smooth bezier title "Exptmod (Diminished Radix) (after)", \
2828
'expt_2k-before.log' smooth bezier title "Exptmod (2k Reduction) (before)", \
2929
'expt_2k-after.log' smooth bezier title "Exptmod (2k Reduction) (after)", \
3030
'expt_2kl-before.log' smooth bezier title "Exptmod (2k-l Reduction) (before)", \

logs/graphs.dem

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set output "mult.png"
99
plot 'sqr.log' smooth bezier title "Squaring (without Karatsuba)", 'sqr_kara.log' smooth bezier title "Squaring (Karatsuba)", 'mult.log' smooth bezier title "Multiplication (without Karatsuba)", 'mult_kara.log' smooth bezier title "Multiplication (Karatsuba)"
1010

1111
set output "expt.png"
12-
plot 'expt.log' smooth bezier title "Exptmod (Montgomery)", 'expt_dr.log' smooth bezier title "Exptmod (Dimminished Radix)", 'expt_2k.log' smooth bezier title "Exptmod (2k Reduction)"
12+
plot 'expt.log' smooth bezier title "Exptmod (Montgomery)", 'expt_dr.log' smooth bezier title "Exptmod (Diminished Radix)", 'expt_2k.log' smooth bezier title "Exptmod (2k Reduction)"
1313

1414
set output "invmod.png"
1515
plot 'invmod.log' smooth bezier title "Modular Inverse"

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ zipup: clean astyle new_file docs
130130
@# As the pdf creation modifies the tex files, git sometimes detects the
131131
@# modified files, but misses that it's put back to its original version.
132132
@git update-index --refresh
133-
@git diff-index --quiet HEAD -- || ( echo "FAILURE: uncommited changes or not a git" && exit 1 )
133+
@git diff-index --quiet HEAD -- || ( echo "FAILURE: uncommitted changes or not a git" && exit 1 )
134134
rm -rf libtommath-$(VERSION) ltm-$(VERSION).*
135135
@# files/dirs excluded from "git archive" are defined in .gitattributes
136136
git archive --format=tar --prefix=libtommath-$(VERSION)/ HEAD | tar x

mp_2expt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ mp_err mp_2expt(mp_int *a, int b)
1515
/* zero a as per default */
1616
mp_zero(a);
1717

18-
/* grow a to accomodate the single bit */
18+
/* grow a to accommodate the single bit */
1919
if ((err = mp_grow(a, (b / MP_DIGIT_BIT) + 1)) != MP_OKAY) {
2020
return err;
2121
}

mp_clamp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/* trim unused digits
77
*
88
* This is used to ensure that leading zero digits are
9-
* trimed and the leading "used" digit will be non-zero
9+
* trimmed and the leading "used" digit will be non-zero
1010
* Typically very fast. Also fixes the sign if there
1111
* are no more leading digits
1212
*/

mp_cmp_mag.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
44
/* SPDX-License-Identifier: Unlicense */
55

6-
/* compare maginitude of two ints (unsigned) */
6+
/* compare magnitude of two ints (unsigned) */
77
mp_ord mp_cmp_mag(const mp_int *a, const mp_int *b)
88
{
99
int n;

mp_exptmod.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/* this is a shell function that calls either the normal or Montgomery
77
* exptmod functions. Originally the call to the montgomery code was
8-
* embedded in the normal function but that wasted alot of stack space
8+
* embedded in the normal function but that wasted a lot of stack space
99
* for nothing (since 99% of the time the Montgomery code would be called)
1010
*/
1111
mp_err mp_exptmod(const mp_int *G, const mp_int *X, const mp_int *P, mp_int *Y)

mp_lshd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ mp_err mp_lshd(mp_int *a, int b)
2727
a->used += b;
2828

2929
/* much like mp_rshd this is implemented using a sliding window
30-
* except the window goes the otherway around. Copying from
30+
* except the window goes the other way around. Copying from
3131
* the bottom to the top. see mp_rshd.c for more info.
3232
*/
3333
for (x = a->used; x --> b;) {

mp_montgomery_calc_normalization.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* shifts with subtractions when the result is greater than b.
88
*
99
* The method is slightly modified to shift B unconditionally upto just under
10-
* the leading bit of b. This saves alot of multiple precision shifting.
10+
* the leading bit of b. This saves a lot of multiple precision shifting.
1111
*/
1212
mp_err mp_montgomery_calc_normalization(mp_int *a, const mp_int *b)
1313
{

mp_mul_2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ mp_err mp_mul_2(const mp_int *a, mp_int *b)
1010
int x, oldused;
1111
mp_digit r;
1212

13-
/* grow to accomodate result */
13+
/* grow to accommodate result */
1414
if ((err = mp_grow(b, a->used + 1)) != MP_OKAY) {
1515
return err;
1616
}

mp_prime_is_prime.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ mp_err mp_prime_is_prime(const mp_int *a, int t, bool *result)
181181
* The mp_digit's have a defined bit-size but the size of the
182182
* array a.dp is a simple 'int' and this library can not assume full
183183
* compliance to the current C-standard (ISO/IEC 9899:2011) because
184-
* it gets used for small embeded processors, too. Some of those MCUs
184+
* it gets used for small embedded processors, too. Some of those MCUs
185185
* have compilers that one cannot call standard compliant by any means.
186186
* Hence the ugly type-fiddling in the following code.
187187
*/
@@ -213,12 +213,12 @@ mp_err mp_prime_is_prime(const mp_int *a, int t, bool *result)
213213
The function mp_rand() goes to some length to use a cryptographically
214214
good PRNG. That also means that the chance to always get the same base
215215
in the loop is non-zero, although very low.
216-
If the BPSW test and/or the addtional Frobenious test have been
216+
If the BPSW test and/or the additional Frobenious test have been
217217
performed instead of just the Miller-Rabin test with the bases 2 and 3,
218218
a single extra test should suffice, so such a very unlikely event
219219
will not do much harm.
220220
221-
To preemptivly answer the dangling question: no, a witness does not
221+
To preemptively answer the dangling question: no, a witness does not
222222
need to be prime.
223223
*/
224224
for (ix = 0; ix < t; ix++) {

mp_reduce_setup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/* SPDX-License-Identifier: Unlicense */
55

66
/* pre-calculate the value required for Barrett reduction
7-
* For a given modulus "b" it calulates the value required in "a"
7+
* For a given modulus "b" it calculates the value required in "a"
88
*/
99
mp_err mp_reduce_setup(mp_int *a, const mp_int *b)
1010
{

mtest/mpi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ void mp_exch(mp_int *mp1, mp_int *mp2)
418418
419419
Release the storage used by an mp_int, and void its fields so that
420420
if someone calls mp_clear() again for the same int later, we won't
421-
get tollchocked.
421+
get tolchocked.
422422
*/
423423

424424
void mp_clear(mp_int *mp)

s_mp_montgomery_reduce_comba.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ mp_err s_mp_montgomery_reduce_comba(mp_int *x, const mp_int *n, mp_digit rho)
6161
/* a = a + mu * m * b**i
6262
*
6363
* This is computed in place and on the fly. The multiplication
64-
* by b**i is handled by offseting which columns the results
64+
* by b**i is handled by offsetting which columns the results
6565
* are added to.
6666
*
6767
* Note the comba method normally doesn't handle carries in the

s_mp_mul_comba.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ mp_err s_mp_mul_comba(const mp_int *a, const mp_int *b, mp_int *c, int digs)
4343
ty = MP_MIN(b->used-1, ix);
4444
tx = ix - ty;
4545

46-
/* this is the number of times the loop will iterrate, essentially
46+
/* this is the number of times the loop will iterate, essentially
4747
while (tx++ < a->used && ty-- >= 0) { ... }
4848
*/
4949
iy = MP_MIN(a->used-tx, ty+1);

s_mp_mul_high_comba.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ mp_err s_mp_mul_high_comba(const mp_int *a, const mp_int *b, mp_int *c, int digs
3535
ty = MP_MIN(b->used-1, ix);
3636
tx = ix - ty;
3737

38-
/* this is the number of times the loop will iterrate, essentially its
38+
/* this is the number of times the loop will iterate, essentially its
3939
while (tx++ < a->used && ty-- >= 0) { ... }
4040
*/
4141
iy = MP_MIN(a->used-tx, ty+1);

s_mp_mul_karatsuba.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* are saved. Note also that the call to mp_mul can end up back
2828
* in this function if the a0, a1, b0, or b1 are above the threshold.
2929
* This is known as divide-and-conquer and leads to the famous
30-
* O(N**lg(3)) or O(N**1.584) work which is asymptopically lower than
30+
* O(N**lg(3)) or O(N**1.584) work which is asymptotically lower than
3131
* the standard O(N**2) that the baseline/comba methods use.
3232
* Generally though the overhead of this method doesn't pay off
3333
* until a certain size (N ~ 80) is reached.

s_mp_sqr_comba.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ mp_err s_mp_sqr_comba(const mp_int *a, mp_int *b)
3939
ty = MP_MIN(a->used-1, ix);
4040
tx = ix - ty;
4141

42-
/* this is the number of times the loop will iterrate, essentially
42+
/* this is the number of times the loop will iterate, essentially
4343
while (tx++ < a->used && ty-- >= 0) { ... }
4444
*/
4545
iy = MP_MIN(a->used-tx, ty+1);

typos.sh

Lines changed: 34 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
11
#!/bin/sh
22

3-
sed -i "s/Dimminished/Diminished/g" libtommath/logs/before_after.dem
4-
sed -i "s/Dimminished/Diminished/g" libtommath/logs/graphs.dem
5-
sed -i "s/accomodate/accommodate/g" libtommath/mp_mul_2.c
6-
sed -i "s/accomodate/accommodate/g" libtommath/mp_2expt.c
7-
sed -i "s/addtional/additional/g" libtommath/mp_prime_is_prime.c
8-
sed -i "s/alot/a lot/g" libtommath/changes.txt
9-
sed -i "s/alot/a lot/g" libtommath/mp_exptmod.c
10-
sed -i "s/alot/a lot/g" libtommath/mp_montgomery_calc_normalization.c
11-
sed -i "s/annonying/annoying/g" libtommath/astylerc
12-
sed -i "s/asymptopically/asymptotically/g" libtommath/s_mp_mul_karatsuba.c
13-
sed -i "s/calulates/calculates/g" libtommath/mp_reduce_setup.c
14-
sed -i "s/configuraion/configuration/g" libtommath/doc/makefile
15-
sed -i "s/eliminiation/elimination/g" libtommath/CMakeLists.txt
16-
sed -i "s/embeded/embedded/g" libtommath/mp_prime_is_prime.c
17-
sed -i "s/endianess/endianness/g" libtommath/demo/test.c
18-
sed -i "s/iterrate/iterate/g" libtommath/s_mp_sqr_comba.c
19-
sed -i "s/iterrate/iterate/g" libtommath/s_mp_mul_high_comba.c
20-
sed -i "s/iterrate/iterate/g" libtommath/s_mp_mul_comba.c
21-
sed -i "s/maginitude/magnitude/g" libtommath/mp_cmp_mag.c
22-
sed -i "s/offseting/offsetting/g" libtommath/s_mp_montgomery_reduce_comba.c
23-
sed -i "s/ofthe/of the/g" libtommath/doc/bn.tex
24-
sed -i "s/otherway/other way/g" libtommath/mp_lshd.c
25-
sed -i "s/packagage/package/g" libtommath/changes.txt
26-
sed -i "s/preemptivly/preemptively/g" libtommath/mp_prime_is_prime.c
27-
sed -i "s/probabilty/probability/g" libtommath/doc/bn.tex
28-
sed -i "s/programms/programs/g" libtommath/doc/bn.tex
29-
sed -i "s/seperate/separate/g" libtommath/changes.txt
30-
sed -i "s/simplifiy/simplify/g" libtommath/demo/test.c
31-
sed -i "s/tollchocked/tolchocked/g" libtommath/mtest/mpi.c
32-
sed -i "s/trimed/trimmed/g" libtommath/mp_clamp.c
33-
sed -i "s/triming/trimming/g" libtommath/demo/mtest_opponent.c
34-
sed -i "s/uncommited/uncommitted/g" libtommath/makefile
35-
sed -i "s/unsused/unused/g" libtommath/changes.txt
3+
sed -i "s/Dimminished/Diminished/g" logs/before_after.dem
4+
sed -i "s/Dimminished/Diminished/g" logs/graphs.dem
5+
sed -i "s/accomodate/accommodate/g" mp_mul_2.c
6+
sed -i "s/accomodate/accommodate/g" mp_2expt.c
7+
sed -i "s/addtional/additional/g" mp_prime_is_prime.c
8+
sed -i "s/affect/effect/g" demo/mtest_opponent.c
9+
sed -i "s/alot/a lot/g" changes.txt
10+
sed -i "s/alot/a lot/g" mp_exptmod.c
11+
sed -i "s/alot/a lot/g" mp_montgomery_calc_normalization.c
12+
sed -i "s/annonying/annoying/g" astylerc
13+
sed -i "s/asymptopically/asymptotically/g" s_mp_mul_karatsuba.c
14+
sed -i "s/calulates/calculates/g" mp_reduce_setup.c
15+
sed -i "s/configuraion/configuration/g" doc/makefile
16+
sed -i "s/eliminiation/elimination/g" CMakeLists.txt
17+
sed -i "s/embeded/embedded/g" mp_prime_is_prime.c
18+
sed -i "s/endianess/endianness/g" demo/test.c
19+
sed -i "s/iterrate/iterate/g" s_mp_sqr_comba.c
20+
sed -i "s/iterrate/iterate/g" s_mp_mul_high_comba.c
21+
sed -i "s/iterrate/iterate/g" s_mp_mul_comba.c
22+
sed -i "s/maginitude/magnitude/g" mp_cmp_mag.c
23+
sed -i "s/offseting/offsetting/g" s_mp_montgomery_reduce_comba.c
24+
sed -i "s/ofthe/of the/g" doc/bn.tex
25+
sed -i "s/otherway/other way/g" mp_lshd.c
26+
sed -i "s/packagage/package/g" changes.txt
27+
sed -i "s/preemptivly/preemptively/g" mp_prime_is_prime.c
28+
sed -i "s/probabilty/probability/g" doc/bn.tex
29+
sed -i "s/programms/programs/g" doc/bn.tex
30+
sed -i "s/seperate/separate/g" changes.txt
31+
sed -i "s/simplifiy/simplify/g" demo/test.c
32+
sed -i "s/tollchocked/tolchocked/g" mtest/mpi.c
33+
sed -i "s/trimed/trimmed/g" mp_clamp.c
34+
sed -i "s/triming/trimming/g" demo/mtest_opponent.c
35+
sed -i "s/uncommited/uncommitted/g" makefile
36+
sed -i "s/unsused/unused/g" changes.txt

0 commit comments

Comments
 (0)