Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9399b2d

Browse files
committed
Fixed unescaped vertical line in recipes.rst.
1 parent a3319c6 commit 9399b2d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

doc/users/recipes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ objects in a numpy record array::
9999
In [66]: r.date
100100
Out[66]:
101101
array([2004-08-19, 2004-08-20, 2004-08-23, ..., 2008-10-10, 2008-10-13,
102-
2008-10-14], dtype=object)
102+
2008-10-14], dtype=object)
103103

104-
The dtype of the numpy record array for the field 'date' is '|O4'
104+
The dtype of the numpy record array for the field 'date' is '\|O4'
105105
which means it is a 4-byte python object pointer; in this case the
106106
objects are datetime.date instances, which we can see when we print
107107
some samples in the ipython terminal window.

0 commit comments

Comments
 (0)