---
spec/index.html | 2 +-
src/args.ts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/spec/index.html b/spec/index.html
index 928284c2..4a5505e4 100644
--- a/spec/index.html
+++ b/spec/index.html
@@ -55,7 +55,7 @@ Options
| `--assets-dir` | `assetsDir` | Directory in which to place assets when using `--assets=external`. Defaults to "assets". |
| `--lint-spec` | `lintSpec` | Enforce some style and correctness checks. |
| `--error-formatter` | | The eslint formatter to be used for printing warnings and errors when using `--verbose`. Either the name of a built-in eslint formatter or the package name of an installed eslint compatible formatter. |
- | `--max-clause-depth N` | `maxClauseDepth` | Warn when clauses exceed a nesting depth of N, and cause those clauses to be numbered by incrementing their parent clause's number rather than by nesting a new number within their parent clause. Default 6. |
+ | `--max-clause-depth N` | `maxClauseDepth` | Warn when clauses exceed a nesting depth of N, and cause those clauses to be numbered by incrementing their parent clause's number rather than by nesting a new number within their parent clause. Default 5. |
| `--printed-toc-depth N` | `printedTocDepth` | Maximum level of subclause to be emitted in printed table of contents. Default 3. (ignored if `--printable` option omitted) |
| `--strict` | | Exit with an error if there are warnings. Cannot be used with `--watch`. |
| `--multipage` | | Emit a distinct page for each top-level clause. |
diff --git a/src/args.ts b/src/args.ts
index bf049345..88cd7cd1 100644
--- a/src/args.ts
+++ b/src/args.ts
@@ -71,7 +71,7 @@ export const options = [
name: 'max-clause-depth',
type: Number,
description:
- 'The maximum nesting depth for clauses; exceeding this will cause a warning. Defaults to six (per Ecma house style.)',
+ 'The maximum nesting depth for clauses; exceeding this will cause a warning. Defaults to five (per Ecma house style.)',
},
{
name: 'printed-toc-depth',