From 2aaacd1bae9ac9fd9a030be8455b3280fb88f311 Mon Sep 17 00:00:00 2001 From: Benjy Weinberger Date: Mon, 1 Aug 2022 17:39:53 -0700 Subject: [PATCH] Fix source roots docs. (Cherry-pick of #16363) (#16364) [ci skip-rust] [ci skip-build-wheels] --- docs/markdown/Using Pants/concepts/source-roots.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/markdown/Using Pants/concepts/source-roots.md b/docs/markdown/Using Pants/concepts/source-roots.md index 50481890a33..bca668cc2ef 100644 --- a/docs/markdown/Using Pants/concepts/source-roots.md +++ b/docs/markdown/Using Pants/concepts/source-roots.md @@ -81,7 +81,7 @@ You can leave off the `/` prefix to match any directory whose suffix matches a p - `src/python` - `project1/src/python` -You can use `_` as a glob. For example, `root_patterns = ["/src/_"]` would consider all of these to be source roots: +You can use `*` as a glob. For example, `root_patterns = ["/src/*"]` would consider all of these to be source roots: - `src/python` - `src/java`