Commit to fix a broken link #7496

Merged
merged 2 commits into from Nov 22, 2016
Jump to file
+2 −3
Split
View
@@ -274,8 +274,7 @@ def _from_ordinalf(x, tz=None):
class strpdate2num(object):
"""
Use this class to parse date strings to matplotlib datenums when
- you know the date format string of the date you are parsing. See
- :file:`examples/load_demo.py`.
+ you know the date format string of the date you are parsing.
@story645

story645 Nov 21, 2016 edited

Member

the format string of the date being parsed is known. (May as well remove the second person...?)

@vraelvrangr

vraelvrangr Nov 21, 2016

Contributor

What do you mean by remove the second person?

@story645

story645 Nov 21, 2016 edited

Member

The use of you. Granted, this is a personal preference so I wouldn't hold up a merge over it. (Also edited language a bit more)

@QuLogic

QuLogic Nov 22, 2016

Member

@story645 I think quoting the first sentence would have clarified things; at first I thought it was just a statement instead of a suggestion of how to write the sentence.

"""
def __init__(self, fmt):
""" fmt: any valid strptime format is supported """
@@ -292,7 +291,7 @@ class bytespdate2num(strpdate2num):
"""
Use this class to parse date strings to matplotlib datenums when
you know the date format string of the date you are parsing. See
- :file:`examples/load_demo.py`.
+ :file:`examples/pylab_examples/load_converter.py`.
"""
def __init__(self, fmt, encoding='utf-8'):
"""