From c4f8645ec700d2abd5abf8f8443e6aeec9529ee8 Mon Sep 17 00:00:00 2001 From: Rahul Malik Date: Tue, 13 Feb 2018 20:08:05 -0500 Subject: [PATCH] Update spec doc to highlight default values --- Docs/ProjectSpec.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Docs/ProjectSpec.md b/Docs/ProjectSpec.md index d6d3c60c..409b76f9 100644 --- a/Docs/ProjectSpec.md +++ b/Docs/ProjectSpec.md @@ -418,10 +418,11 @@ Schemes allows for more control than the convenience [Target Scheme](#target-sch - `analyze` or `analyzing` - `archive` or `archiving` -- [ ] **parallelizeBuild**: **Bool** - Whether or not your targets should be built in parallel. +- [ ] **parallelizeBuild**: **Bool** - Whether or not your targets should be built in parallel. By default this is `true` if not set. - `true`: Build targets in parallel - `false`: Build targets serially -- [ ] **buildImplicitDependencies**: **Bool** - Flag to determine if Xcode should be implicit dependencies of this scheme. +- [ ] **buildImplicitDependencies**: **Bool** - Flag to determine if Xcode should be implicit dependencies of this scheme. By default this is `true` if not set. + - `true`: Discover implicit dependencies of this scheme - `false`: Only build explicit dependencies of this scheme