aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorShinigami <[email protected]>2022-01-30 19:37:21 +0100
committerGitHub <[email protected]>2022-01-30 19:37:21 +0100
commit6c5b9706eb16f8841d3f3b2109b8a21fb65fa04a (patch)
tree7b043e25d6fe971c3223851b2ccac8338e51d8a8 /scripts
parentd4125e2a7d69042c37ccecea89f1525c4424a45b (diff)
downloadfaker-6c5b9706eb16f8841d3f3b2109b8a21fb65fa04a.tar.xz
faker-6c5b9706eb16f8841d3f3b2109b8a21fb65fa04a.zip
chore: use recommended restrict-plus-operands (#369)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/apidoc.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/apidoc.ts b/scripts/apidoc.ts
index 3d972c95..f07e5e06 100644
--- a/scripts/apidoc.ts
+++ b/scripts/apidoc.ts
@@ -232,7 +232,7 @@ async function build(): Promise<void> {
.map((tag) => tag.text.trimEnd()) || [];
if (examples.length !== 0) {
- console.log('Example-Length: ' + examples);
+ console.log('Example-Length:', examples);
content += examples.join('\n') + '\n';
}