Skip to content

Commit

Permalink
add contributing.rst to index.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
jreback committed Mar 7, 2017
1 parent e31af26 commit e16cff4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
16 changes: 8 additions & 8 deletions docs/source/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ Bug reports must:

#. Include a short, self-contained Python snippet reproducing the problem.
You can format the code nicely by using `GitHub Flavored Markdown
<http://github.github.com/github-flavored-markdown/>`_::
<http://github.github.com/github-flavored-markdown/>`__

.. code-block:: python
```python
>>> from pandas_gbq import gbq
>>> df = gbq.read_gbq(...)
...
```
#. Include the full version string of *pandas-gbq*. ::
#. Include the full version string of *pandas-gbq*.

.. code-block:: python
```python
>>> import pandas_gbq
>>> pandas_gbq.__version__
...
```
#. Explain why the current behavior is wrong/not desired and what you expect instead.

Expand Down Expand Up @@ -282,7 +282,7 @@ directive. This should also be put in the docstring when adding a new function
or method.

Contributing your changes to *pandas-gbq*
=====================================
=========================================

Committing your code
--------------------
Expand Down Expand Up @@ -438,4 +438,4 @@ branch has not actually been merged.

The branch will still exist on GitHub, so to delete it there do::

git push origin --delete shiny-new-feature
git push origin --delete shiny-new-feature
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Contents:
writing.rst
tables.rst
api.rst
contributing.rst
changelog.rst


Expand Down
4 changes: 2 additions & 2 deletions docs/source/reading.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. _reader:

Reading
=======
Reading Tables
==============

Suppose you want to load all data from an existing BigQuery table : `test_dataset.test_table`
into a DataFrame using the :func:`~read_gbq` function.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/tables.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. _create_tables:

Creating BigQuery Tables
========================
Creating Tables
===============

.. code-block:: ipython
Expand Down

0 comments on commit e16cff4

Please sign in to comment.