Skip to content

Commit

Permalink
Capitalize consistently
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed May 14, 2019
1 parent 4160237 commit 1286edb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask/array/core.py
Expand Up @@ -1049,7 +1049,7 @@ def _repr_html_table(self):
' <tbody>',
' <tr><th> Bytes </th><td> %s </td> <td> %s </td></tr>' % (nbytes, cbytes),
' <tr><th> Shape </th><td> %s </td> <td> %s </td></tr>' % (str(self.shape), str(self.chunksize)),
' <tr><th> Count </th><td> %d Tasks </td><td> %d chunks </td></tr>' % (
' <tr><th> Count </th><td> %d Tasks </td><td> %d Chunks </td></tr>' % (
len(self.__dask_graph__()), self.npartitions),
' <tr><th> DType </th><td> %s </td><td></td></tr>' % self.dtype,
' </tbody>',
Expand Down

0 comments on commit 1286edb

Please sign in to comment.