Following patch fixes two typos, one of them a bit more serious...

>From 69bef9ea428df309fa04d888c00b43858b1b8a1c Mon Sep 17 00:00:00 2001
From: Priit Laes <pl...@plaes.org>
Date: Mon, 13 Jul 2009 23:06:29 +0300
Subject: [PATCH] Fix two typos, one functional, one in comment.

Signed-off-by: Priit Laes <pl...@plaes.org>
---
 sympy/core/basic.py    |    2 +-
 sympy/core/function.py |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sympy/core/basic.py b/sympy/core/basic.py
index b20ed06..9033bfe 100644
--- a/sympy/core/basic.py
+++ b/sympy/core/basic.py
@@ -1243,7 +1243,7 @@ def has(self, *patterns):
 
     def _eval_interval(self, x, a, b):
         """
-        Returns evaluation over an interval.  For most funtions this is:
+        Returns evaluation over an interval. For most functions this is:
 
         self.subs(x, b) - self.subs(x, a),
 
diff --git a/sympy/core/function.py b/sympy/core/function.py
index 6e65c5b..c7d0265 100644
--- a/sympy/core/function.py
+++ b/sympy/core/function.py
@@ -368,7 +368,7 @@ def _eval_expand_multinomial(self, deep=True, **hints):
             return self
         sargs, terms = self.args[:], []
         for term in sargs:
-            if hasattr(term, '_eval_expand_multinomail'):
+            if hasattr(term, '_eval_expand_multinomial'):
                 newterm = term._eval_expand_multinomial(deep=deep, **hints)
             else:
                 newterm = term
-- 
1.6.3.3



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sympy-patches" group.
To post to this group, send email to sympy-patches@googlegroups.com
To unsubscribe from this group, send email to 
sympy-patches+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sympy-patches?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to