]> www.ginac.de Git - ginac.git/commitdiff
- more typos fixed
authorChristian Bauer <Christian.Bauer@uni-mainz.de>
Fri, 26 Nov 1999 01:57:46 +0000 (01:57 +0000)
committerChristian Bauer <Christian.Bauer@uni-mainz.de>
Fri, 26 Nov 1999 01:57:46 +0000 (01:57 +0000)
doc/tutorial/ginac.texi

index 64e58f76f86452c98e043dcc731eb4966955722b..95dd05e49687146b1fe77199a1dac251ccebdac7 100644 (file)
@@ -798,7 +798,7 @@ but for internal routines when no output is desired it is often
 enough.  We'll come across examples of such symbols later in this
 tutorial.
 
-This implies that the stings passed to symbols at construction
+This implies that the strings passed to symbols at construction
 time may not be used for comparing two of them.  It is perfectly
 legitimate to write @code{symbol x("x"),y("x");} but it is
 likely to lead into trouble.  Here, @code{x} and
@@ -1134,7 +1134,7 @@ int main()
     cout << "gamma(" << foo << ") -> " << gamma(foo) << endl;
     ex bar = foo.subs(y==1);
     cout << "gamma(" << bar << ") -> " << gamma(bar) << endl;
-    ex foobar= bar.subs(x==7);
+    ex foobar = bar.subs(x==7);
     cout << "gamma(" << foobar << ") -> " << gamma(foobar) << endl;
     // ...
 @}