From 2ba34de460c10852300af409aa6ff881ad41efc6 Mon Sep 17 00:00:00 2001 From: Joel Dudley Date: Thu, 6 Jul 2017 14:23:52 +0100 Subject: [PATCH] Fix broken commands. --- docs/source/hello-world-template.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/hello-world-template.rst b/docs/source/hello-world-template.rst index c298fb87c0..d38350571f 100644 --- a/docs/source/hello-world-template.rst +++ b/docs/source/hello-world-template.rst @@ -24,13 +24,13 @@ Open a terminal window in the directory where you want to download the CorDapp t .. code-block:: text # Clone the template from GitHub: - git clone https://github.com/corda/cordapp-template.git & cd cordapp-template + git clone https://github.com/corda/cordapp-template.git ; cd cordapp-template # Retrieve a list of the stable Milestone branches using: git branch -a --list *release-M* # Check out the Milestone branch with the latest version number: - git checkout release-M[*version number*] & git pull + git checkout release-M[*version number*] ; git pull Template structure ------------------ @@ -82,4 +82,4 @@ Progress so far --------------- We now have a template that we can build upon to define our IOU CorDapp. -We'll begin writing the CorDapp proper by writing the definition of the ``IOUState``. \ No newline at end of file +We'll begin writing the CorDapp proper by writing the definition of the ``IOUState``.