File: content/manuals/extensions/extensions-sdk/dev/api/backend.md
Issue
The code example for the get method has a syntax error - missing closing parenthesis:
ddClient.extension.vm.service
.get("/some/service")
.then((value: any) => console.log(value)
Why this matters
Readers who copy this code example will get a syntax error. The missing closing parenthesis after console.log(value) makes this invalid TypeScript/JavaScript.
Suggested fix
Add the missing closing parenthesis:
ddClient.extension.vm.service
.get("/some/service")
.then((value: any) => console.log(value))
Found by nightly documentation quality scanner
File:
content/manuals/extensions/extensions-sdk/dev/api/backend.mdIssue
The code example for the
getmethod has a syntax error - missing closing parenthesis:Why this matters
Readers who copy this code example will get a syntax error. The missing closing parenthesis after
console.log(value)makes this invalid TypeScript/JavaScript.Suggested fix
Add the missing closing parenthesis:
Found by nightly documentation quality scanner