Commit a28accb6 authored by rusty1s's avatar rusty1s
Browse files

typo

parent bb963e32
...@@ -22,7 +22,7 @@ def narrow(src, dim, start, length): ...@@ -22,7 +22,7 @@ def narrow(src, dim, start, length):
index, value, sparse_size, rowptr, is_sorted=True) index, value, sparse_size, rowptr, is_sorted=True)
elif dim == 1: elif dim == 1:
# This is faster than accessing `csc()` in analogy to thr `dim=0` case. # This is faster than accessing `csc()` in analogy to the `dim=0` case.
(row, col), value = src.coo() (row, col), value = src.coo()
mask = (col >= start) & (col < start + length) mask = (col >= start) & (col < start + length)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment