X-Git-Url: https://scm.cri.minesparis.psl.eu/git/linpy.git/blobdiff_plain/5a5fd1db359b190c6207301eb08705a34367968a..b60eea3e1f1ee3e2ec26b7df2ae64e6da8586372:/linpy/domains.py

diff --git a/linpy/domains.py b/linpy/domains.py
index 83f6c2c..0da0a49 100644
--- a/linpy/domains.py
+++ b/linpy/domains.py
@@ -737,7 +737,7 @@ class Domain(GeometricObject):
     @classmethod
     def fromsympy(cls, expr):
         """
-        Create a domain from a sympy expression.
+        Create a domain from a SymPy expression.
         """
         import sympy
         from .polyhedra import Lt, Le, Eq, Ne, Ge, Gt
@@ -756,7 +756,7 @@ class Domain(GeometricObject):
 
     def tosympy(self):
         """
-        Convert the domain to a sympy expression.
+        Convert the domain to a SymPy expression.
         """
         import sympy
         polyhedra = [polyhedron.tosympy() for polyhedron in polyhedra]