Skip to content

Commit 00e842f

Browse files
committed
Commit review suggestions
1 parent 427e4e2 commit 00e842f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/developing-packages.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Quickstart
77
Starting from scratch, we're going to walk you through creating a simple
88
Haskell application.
99

10-
**TL;DR;** ``mkdir proglet && cd proglet && cabal init && cabal run proglet``
10+
**TL;DR;** ``mkdir proglet && cd proglet && cabal init --simple --exe && cabal run proglet``
1111

1212

1313
Introduction
@@ -28,7 +28,7 @@ Using ``cabal init``
2828
--------------------
2929

3030
The ``cabal init`` command creates the necessary files for a Cabal package,
31-
it has both an ``--interactive`` and ``--non-interactive`` (default)
31+
it has both an ``--interactive`` (default) and ``--non-interactive``
3232
mode. The interactive mode will walk you through many of the package
3333
options and metadata, the non-interactive mode will simply pick reasonable
3434
defaults which is sufficient if you're just trying something out.
@@ -47,7 +47,7 @@ If you want, you can also try out the interactive mode, for now chose
4747

4848
::
4949

50-
$ cabal init --interactive
50+
$ cabal init
5151
...
5252
What does the package build:
5353
1) Executable

0 commit comments

Comments
 (0)