Skip to content
Snippets Groups Projects
Commit 6449e8b1 authored by becker33's avatar becker33
Browse files

Merge pull request #492 from adamjstewart/typos/compiler

Typo fix in compiler docstring
parents dce691e1 5db96739
No related branches found
No related tags found
No related merge requests found
...@@ -256,12 +256,12 @@ def find(cls, *path): ...@@ -256,12 +256,12 @@ def find(cls, *path):
def __repr__(self): def __repr__(self):
"""Return a string represntation of the compiler toolchain.""" """Return a string representation of the compiler toolchain."""
return self.__str__() return self.__str__()
def __str__(self): def __str__(self):
"""Return a string represntation of the compiler toolchain.""" """Return a string representation of the compiler toolchain."""
return "%s(%s)" % ( return "%s(%s)" % (
self.name, '\n '.join((str(s) for s in (self.cc, self.cxx, self.f77, self.fc)))) self.name, '\n '.join((str(s) for s in (self.cc, self.cxx, self.f77, self.fc))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment