Skip to content

Commit

Permalink
Fix sphinx .. literalinclude:: PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
jamespeterschinner committed Oct 23, 2017
1 parent ed2062d commit b2b1f13
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions doc/source/beyond_getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ All methods exposed by *async_v20*. **OandaClient** are written in a declarative

Lets take at look at an example:

.. literalinclude:: ..\..\async_v20\interface\instrument.py
.. literalinclude:: ../../async_v20/interface/instrument.py
:lines: 20-33

.. Note::
Expand All @@ -47,15 +47,15 @@ Lets take at look at an example:
**First**
- We define the endpoint:

.. literalinclude:: ..\..\async_v20\interface\instrument.py
.. literalinclude:: ../../async_v20/interface/instrument.py
:lines: 20
:emphasize-lines: 1

**Then**
- We define arguments to pass to the endpoint


.. literalinclude:: ..\..\async_v20\interface\instrument.py
.. literalinclude:: ../../async_v20/interface/instrument.py
:lines: 21-33
:emphasize-lines: 2-12

Expand All @@ -69,12 +69,12 @@ The http request formatting is defined by the *EndPoint*

**In this case**

.. literalinclude:: ..\..\async_v20\endpoints\instrument.py
.. literalinclude:: ../../async_v20/endpoints/instrument.py
:lines: 10-45

**Notice that**

.. literalinclude:: ..\..\async_v20\endpoints\instrument.py
.. literalinclude:: ../../async_v20/endpoints/instrument.py
:lines: 21
:emphasize-lines: 1

Expand All @@ -92,7 +92,7 @@ This section assumes you have read :ref:`passing-arguments`
The :term:`http` response from :term:`OANDA` is handled by the `EndPoint`
each *OandaClient*. **method** defines.

.. literalinclude:: ..\..\async_v20\endpoints\instrument.py
.. literalinclude:: ../../async_v20/endpoints/instrument.py
:lines: 41-42
:emphasize-lines: 1,2

Expand Down Expand Up @@ -125,7 +125,7 @@ To solve this the :term:`metaclass`:
**for** `async_v20.definitions.types.base`. **Model**
constructs two dictionary's

.. literalinclude:: ..\..\async_v20\definitions\metaclass.py
.. literalinclude:: ../../async_v20/definitions/metaclass.py
:lines: 93,94
:emphasize-lines: 1,2

Expand Down

0 comments on commit b2b1f13

Please sign in to comment.