Skip to content

Commit

Permalink
FIX #469 missing colons
Browse files Browse the repository at this point in the history
  • Loading branch information
muuki88 committed Jan 26, 2015
1 parent e2081da commit 0510814
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sphinx/archetypes/java_app/generating-files.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Let's dynamically (in the build) construct some files that should be included in
For the example, let's download a license file for our application and add it to the distribution. First,
let's create a task which will download a license file. Add the following to build.sbt

.. code-block: scala
.. code-block:: scala
val downloadLicense = taskKey[File]("Downloads the latest license file.")
Expand All @@ -31,7 +31,7 @@ shows the mapping of the configuration files we set up :doc:`previously <customi
append files to the mappings rather than relying on the native packager to find things. Let's add
the license in the root of the package we're creating. Add the following to the ``build.sbt``

.. code-block: scala
.. code-block:: scala
mappings in Universal += downloadLicense.value -> "LICENSE"
Expand Down

0 comments on commit 0510814

Please sign in to comment.