Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grammar & Code Fixes #3707

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/api/variables/stringArrayFooter.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Variable: stringArrayFooter

> `const` **stringArrayFooter**: "Respond with a JSON array containing the values in a valid JSON block formatted for markdown with this structure:\n\`\`\`json\n\[\n 'value',\n 'value'\n\]\n\`\`\`\n\nYour response must include the valid JSON block."
> `const` **stringArrayFooter**: "Respond with a JSON array containing the values in a valid JSON block formatted in markdown with this structure:\n\`\`\`json\n\[\n 'value',\n 'value'\n\]\n\`\`\`\n\nYour response must include the valid JSON block."

## Defined in

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ plugins
}
// repo type
if (repoData[0] !== 'github') {
console.error('Plugin', plugin, 'uses', repoData[0], ' but this utility only currently support github')
console.error('Plugin', plugin, 'uses', repoData[0], ' but this utility currently only support github')
return
}
const parts = repoData[1].split('/')
Expand Down
2 changes: 1 addition & 1 deletion packages/client-direct/src/verifiable-log-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export function createVerifiableLogApiRouter(
.getService<VerifiableLogService>(
ServiceType.VERIFIABLE_LOGGING
)
.pageQueryLogs(verifiableLogQuery, page, pageSize);
?.pageQueryLogs(verifiableLogQuery, page, pageSize);

res.json({
success: true,
Expand Down
Loading