8000 DOC : whole bunch of documentation clean up by tacaswell · Pull Request #3170 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

DOC : whole bunch of documentation clean up #3170

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
DOC : grammer fixes and doc edits
 - changed some wording
  • Loading branch information
tacaswell committed Jul 18, 2014
commit 81e963b4ab7f2a7be9a579b1cc54377d55e09401
19 changes: 9 additions & 10 deletions doc/faq/howto_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -490,16 +490,15 @@ The development of matplotlib is organized through `github
<https://github.com/matplotlib/matplotlib>`_. If you would like
to report a bug or submit a patch please use that interface.

To report a bug just `create an issue
<https://github.com/matplotlib/matplotlib/issues/new>`_ on github.
Please include a `Short, Self Contained, Correct (Compilable), Example
<http://sscce.org>`_ demonstrating what is wrong. This makes it much
easier for the developers to evaluate the bug report and gives them a
start on where to start looking for the bug. The easier it is for the
developers to understand your problem the faster it will get fixed.
Expect that the bug reports will be a conversation. If you do not
want to register with github, please email bug reports to the `mailing
list <matplotlib-devel@lists.sourceforge.net>`_.
To report a bug `create an issue
<https://github.com/matplotlib/matplotlib/issues/new>`_ on github
(this requires having a github account). Please include a `Short,
Self Contained, Correct (Compilable), Example <http://sscce.org>`_
demonstrating what the bug is. Including a clear, easy to test
example makes it easy for the developers to evaluate the bug. Expect
that the bug reports will be a conversation. If you do not want to
register with github, please email bug reports to the `mailing list
<matplotlib-devel@lists.sourceforge.net>`_.


The easiest way to submit patches to matplotlib is through pull
Expand Down
1 change: 1 addition & 0 deletions doc/faq/usage_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ which you would then use as::
fig, ax = plt.subplots(1, 1)
my_plotter(ax, data1, data2, {'marker':'x'})


or if you wanted to have 2 sub-plots::

fig, (ax1, ax2) = plt.subplots(1, 2)
Expand Down
0