From: Christian Bauer Date: Fri, 26 Nov 1999 01:57:46 +0000 (+0000) Subject: - more typos fixed X-Git-Tag: release_0-5-0~122 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=b1769be1afad143a2732326de62f453421900582 - more typos fixed --- diff --git a/doc/tutorial/ginac.texi b/doc/tutorial/ginac.texi index 64e58f76..95dd05e4 100644 --- a/doc/tutorial/ginac.texi +++ b/doc/tutorial/ginac.texi @@ -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; // ... @}