From b1769be1afad143a2732326de62f453421900582 Mon Sep 17 00:00:00 2001 From: Christian Bauer Date: Fri, 26 Nov 1999 01:57:46 +0000 Subject: [PATCH] - more typos fixed --- doc/tutorial/ginac.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; // ... @} -- 2.44.0