Skip to content

Commit 1582800

Browse files
committed
Merge pull request #470 from sbt/docs/fix-java-app-examples
FIX #469 missing colons
2 parents e2081da + 0510814 commit 1582800

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sphinx/archetypes/java_app/generating-files.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Let's dynamically (in the build) construct some files that should be included in
77
For the example, let's download a license file for our application and add it to the distribution. First,
88
let's create a task which will download a license file. Add the following to build.sbt
99

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

34-
.. code-block: scala
34+
.. code-block:: scala
3535
3636
mappings in Universal += downloadLicense.value -> "LICENSE"
3737

0 commit comments

Comments
 (0)