From 78abdda54b6a88241bf40ce420fc043a98c8bf3b Mon Sep 17 00:00:00 2001 From: Nud Teeraworamongkol Date: Mon, 6 Nov 2017 21:40:09 +0700 Subject: [PATCH] Updated typo in Customizing paths page --- src/reference/04-Howto/02-Howto-Customizing-Paths.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/reference/04-Howto/02-Howto-Customizing-Paths.md b/src/reference/04-Howto/02-Howto-Customizing-Paths.md index 8c020c709..939816a15 100644 --- a/src/reference/04-Howto/02-Howto-Customizing-Paths.md +++ b/src/reference/04-Howto/02-Howto-Customizing-Paths.md @@ -184,16 +184,16 @@ exclusion, the following also ignores files containing `impl` in their name, ```scala -excludeFilter in unmanagedSources := HiddenFileFilter || "*impl*" +excludeFilter in unmanagedResources := HiddenFileFilter || "*impl*" ``` To have different filters for main and test libraries, configure `Compile` and `Test` separately: ```scala -includeFilter in (Compile, unmanagedSources) := "*.txt" +includeFilter in (Compile, unmanagedResources) := "*.txt" -includeFilter in (Test, unmanagedSources) := "*.html" +includeFilter in (Test, unmanagedResources) := "*.html" ``` > **Note**: By default, sbt includes all files that are not hidden.