]> www.ginac.de Git - ginac.git/blobdiff - check/exam_misc.cpp
Fix some apparent typos and misindentations.
[ginac.git] / check / exam_misc.cpp
index 01c7ca6f64886c81fd595ad9c9a54949d135a854..cdbb7637b30c2ed92b4c4bd43ef510e7dc592b25 100644 (file)
@@ -3,7 +3,7 @@
  */
 
 /*
- *  GiNaC Copyright (C) 1999-2011 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2015 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -220,7 +220,7 @@ static unsigned exam_subs()
        }
 
        // And this used to fail in GiNaC 1.5.8 because it first substituted
-       // exp(x) -> exp(log(x)) -> x, and then substitued again x -> log(x)
+       // exp(x) -> exp(log(x)) -> x, and then substituted again x -> log(x)
        e1 = exp(x);
        e2 = e1.subs(x == log(x));
        if (!e2.is_equal(x)) {