From: Christian Bauer Date: Tue, 8 Jun 2004 18:50:19 +0000 (+0000) Subject: fixed typo X-Git-Tag: release_1-3-0~73 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=12f5385726b14bd026f7722eae23c2239575fd00;hp=1d5c7c0b870130e3fcdcf0e2d96b19810e1a742c fixed typo --- diff --git a/ginac/basic.cpp b/ginac/basic.cpp index 3fcac861..7a063476 100644 --- a/ginac/basic.cpp +++ b/ginac/basic.cpp @@ -549,8 +549,8 @@ bool basic::match(const ex & pattern, lst & repl_lst) const if (is_exactly_a(pattern)) { // Wildcard matches anything, but check whether we already have found - // a match for that wildcard first (if so, it the earlier match must - // be the same expression) + // a match for that wildcard first (if so, the earlier match must be + // the same expression) for (lst::const_iterator it = repl_lst.begin(); it != repl_lst.end(); ++it) { if (it->op(0).is_equal(pattern)) return is_equal(ex_to(it->op(1)));