Skip to content

Commit

Permalink
Update docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
lpozo committed Apr 4, 2020
1 parent 639d200 commit ef846e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mathrepl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

"""MathREPL, a math expression evaluator using Python's eval() and math."""
"""MathREPL, a math expression evaluator using Python eval() and the math module."""

import math

Expand Down
2 changes: 1 addition & 1 deletion mathrepl/evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

"""MathREPL, a math expression evaluator using Python's eval() and math."""
"""MathREPL, a math expression evaluator using Python eval() and the math module."""

from . import ALLOWED_NAMES

Expand Down
3 changes: 2 additions & 1 deletion tests/test_evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

"""This module provides tests."""
"""This module provides tests for mathrepl.evaluator."""

import math

import pytest
from pytest import param

Expand Down

0 comments on commit ef846e3

Please sign in to comment.