From: Neil Smith <neil.git@njae.me.uk>
Date: Thu, 1 Jun 2017 16:05:39 +0000 (+0100)
Subject: Updated README to fix a typo and add some clarificaiton about directories
X-Git-Url: https://git.njae.me.uk/?a=commitdiff_plain;h=222b52201f17be7217e7fab4a98b23109cbf4910;p=advent-of-code-16.git

Updated README to fix a typo and add some clarificaiton about directories
---

diff --git a/README.html b/README.html
index 2525fa5..b780562 100644
--- a/README.html
+++ b/README.html
@@ -19,6 +19,7 @@
 <pre><code>$ sudo aptitude install haskell-platform haskell-stack</code></pre>
 <p>).</p>
 <p>I have one package for each day, to save time waiting for Stack to check every executable before compiling what's changed. Each package needs a separate directory tree and a separate <code>.cabal</code> file.</p>
+<p>To work on a project, <code>cd</code> into that project's directory.</p>
 <p>Compile with</p>
 <pre><code>stack build</code></pre>
 <p>or</p>
@@ -28,7 +29,7 @@
 <p>Run interactively with</p>
 <pre><code>stack ghci adventofcode1601:exe:advent01</code></pre>
 <p>To profile, use</p>
-<pre><code>stack build --executable-profiling --library-profiling -ghc-options=&quot;-fprof-auto -rtsopts&quot; adventofcode1601</code></pre>
+<pre><code>stack build --executable-profiling --library-profiling --ghc-options=&quot;-fprof-auto -rtsopts&quot; adventofcode1601</code></pre>
 <p>then run with</p>
 <pre><code>stack exec -- advent01 +RTS -p -hy</code></pre>
 <h1 id="readme">Readme</h1>
diff --git a/README.md b/README.md
index 78f7849..cb6a338 100644
--- a/README.md
+++ b/README.md
@@ -17,6 +17,8 @@ $ sudo aptitude install haskell-platform haskell-stack
 
 I have one package for each day, to save time waiting for Stack to check every executable before compiling what's changed. Each package needs a separate directory tree and a separate `.cabal` file. 
 
+To work on a project, `cd` into that project's directory.
+
 Compile with
 ```
 stack build
@@ -38,7 +40,7 @@ stack ghci adventofcode1601:exe:advent01
 
 To profile, use 
 ```
-stack build --executable-profiling --library-profiling -ghc-options="-fprof-auto -rtsopts" adventofcode1601
+stack build --executable-profiling --library-profiling --ghc-options="-fprof-auto -rtsopts" adventofcode1601
 ```
 then run with
 ```