From 0f6fe85d3fab9187f24d1da7845f8ce63e1f4f6a Mon Sep 17 00:00:00 2001 From: Antoine Gourlay Date: Wed, 26 Feb 2014 01:23:32 +0100 Subject: [PATCH] update doc: javaHome is not File but Option[File]. --- src/sphinx/Detailed-Topics/Forking.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sphinx/Detailed-Topics/Forking.rst b/src/sphinx/Detailed-Topics/Forking.rst index 0eb910ee3..4dd424f90 100644 --- a/src/sphinx/Detailed-Topics/Forking.rst +++ b/src/sphinx/Detailed-Topics/Forking.rst @@ -104,7 +104,7 @@ directory: :: - javaHome := file("/path/to/jre/") + javaHome := Some(file("/path/to/jre/")) Note that if this is set globally, it also sets the Java installation used to compile Java sources. You can restrict it to running only by @@ -112,7 +112,7 @@ setting it in the :key:`run` scope: :: - javaHome in run := file("/path/to/jre/") + javaHome in run := Some(file("/path/to/jre/")) As with the other settings, you can specify the configuration to affect only the main or test :key:`run` tasks or just the :key:`test` tasks.