From 6aa847ca2dcb7983f9308c2bca4c6b5db0496fe7 Mon Sep 17 00:00:00 2001 From: JimStearns206 Date: Thu, 2 Jun 2016 16:35:36 -0700 Subject: [PATCH] DOC: Fix bullet list format (minor). --- docs/source/beginner-tutorial.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/source/beginner-tutorial.rst b/docs/source/beginner-tutorial.rst index 7c45efe4..63b901a5 100644 --- a/docs/source/beginner-tutorial.rst +++ b/docs/source/beginner-tutorial.rst @@ -30,7 +30,10 @@ instructions `__ if you haven't set up zipline yet. Every ``zipline`` algorithm consists of two functions you have to -define: \* ``initialize(context)`` \* ``handle_data(context, data)`` +define: + +* ``initialize(context)`` +* ``handle_data(context, data)`` Before the start of the algorithm, ``zipline`` calls the ``initialize()`` function and passes in a ``context`` variable.