Hi, I'd like to include this misc cleanups and typo fixes patch before
release, please review.

- Best,
- Qian

--
You received this message because you are subscribed to the Google Groups "FriCAS - 
computer algebra system" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/fricas-devel/b18c013c-89ed-d6ed-4f47-9ab907230a28%40gmail.com.
diff --git a/src/algebra/Makefile.in b/src/algebra/Makefile.in
index 64a0992d..daba7b0d 100644
--- a/src/algebra/Makefile.in
+++ b/src/algebra/Makefile.in
@@ -467,7 +467,7 @@ stamp-oboo3: stamp-db
            for A in ${CATDOMS} ; do \
               cp $${A}-.NRLIB/$${A}-.$(FASLEXT) ${OUT}/$${A}-.$(FASLEXT)  || exit 1 ; \
            done; \
-           rm -rf *.NRLIB \
+           rm -rf *.NRLIB ; \
            echo "Stage 3 object bootstrap (normal mode)" ; \
            echo > oboo3.input ; \
            for A in ${DOMLIST} ; do \
diff --git a/src/algebra/fmt.spad b/src/algebra/fmt.spad
index ed5637e9..4b096cea 100644
--- a/src/algebra/fmt.spad
+++ b/src/algebra/fmt.spad
@@ -86,7 +86,7 @@ ability to format the output in \TeX{} form look like an afterthought.
 
 Nevertheless the following framework builds solely on what
 \spadtype{OutputForm} provides and creates a domain
-\spadtype{FormattedOutput} that is able display different formats.
+\spadtype{FormattedOutput} that is able to display different formats.
 
 The proposed way to enable disable the output of a certain format is
 like shown in the following piece of code, i.e, one sets a list of
diff --git a/src/algebra/pgcd.spad b/src/algebra/pgcd.spad
index 3da45248..ccaa8c5a 100644
--- a/src/algebra/pgcd.spad
+++ b/src/algebra/pgcd.spad
@@ -9,7 +9,7 @@
 ++   factoring algorithm, Math. Comp. 32 (1978), 1215-1231.
 ++ Description:
 ++   This package computes multivariate polynomial gcd's using
-++ a hensel lifting strategy. The contraint on the coefficient
+++ a hensel lifting strategy. The constraint on the coefficient
 ++ domain is imposed by the lifting strategy. It is assumed that
 ++ the coefficient domain has the property that almost all specializations
 ++ preserve the degree of the gcd.
diff --git a/src/algebra/tensor.spad b/src/algebra/tensor.spad
index efd5a6c3..100fdc56 100644
--- a/src/algebra/tensor.spad
+++ b/src/algebra/tensor.spad
@@ -184,11 +184,11 @@ bb := [subscript('b, [k])::N for k in 1..n];
 a := reduce(+, aa);
 b := reduce(+, bb);
 
-)lisp (require : sb-sprof)
-)lisp (sb-sprof : start-profiling)
+)lisp (require :sb-sprof)
+)lisp (sb-sprof:start-profiling)
 t := tensor(a, b)$MxN;
-)lisp (sb-sprof : stop-profiling)
-)lisp (sb-sprof : report)
+)lisp (sb-sprof:stop-profiling)
+)lisp (sb-sprof:report)
 @
 
 We compare the following methods.
diff --git a/src/interp/i-spec1.boot b/src/interp/i-spec1.boot
index 0b09d1b3..82260159 100644
--- a/src/interp/i-spec1.boot
+++ b/src/interp/i-spec1.boot
@@ -974,7 +974,7 @@ mkAndApplyZippedPredicates (indexList, s,zipType,itrl) ==
   s
 
 mkIterZippedFun(indexList,funBody,zipType,$localVars) ==
-  -- transform funBody into a lamda with $index as the parameter
+  -- transform funBody into a lambda with $index as the parameter
   numVars:= #$indexVars
   for [var,:.] in $indexVars repeat
     funBody := subVecNodes(mkIterVarSub(var,numVars),var,funBody)
diff --git a/src/interp/msgdb.boot b/src/interp/msgdb.boot
index 4068b156..07d8ebb3 100644
--- a/src/interp/msgdb.boot
+++ b/src/interp/msgdb.boot
@@ -43,7 +43,7 @@ S2IL0001 which means:
    L           originally from LISPLIB BOOT
    0001        a sequence number
 
-Each message may contain formatting codes and and parameter codes.
+Each message may contain formatting codes and parameter codes.
 The formatting codes are:
    %b          turn on bright printing
    %ceoff      turn off centering

Reply via email to