Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
alugowski committed Aug 24, 2023
1 parent 17b7569 commit c4e22c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# MatRepr

Sparse matrix HTML and LaTeX representation with Jupyter integration. For Spy plots see [MatSpy](https://github.com/alugowski/matspy).
Sparse matrix string, HTML, and LaTeX representation with Jupyter integration. For Spy plots see [MatSpy](https://github.com/alugowski/matspy).

Supports:
* `scipy.sparse` sparse matrices and arrays like `csr_matrix` and `coo_array`.
Expand Down
1 change: 1 addition & 0 deletions tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ def test_mdisplay(self):
mat = [[1, 2], [1003, 1004]]
matrepr.mdisplay(mat, "html")
matrepr.mdisplay(mat, "latex")
matrepr.mdisplay(mat, "str")

with self.assertRaises(ValueError):
matrepr.mdisplay(mat, "foobar")
Expand Down

0 comments on commit c4e22c9

Please sign in to comment.