Skip to content

Commit 9e96cc8

Browse files
committed
fix extraneous ** in Request Parameters
1 parent 8afc164 commit 9e96cc8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/layouts/api-endpoint.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To learn more, see [Authentication](https://docs.seam.co/latest/api/authenticati
3434

3535
{{#if request.parameters.length}}
3636
{{#each request.parameters}}
37-
**`{{this.name}}`** *{{this.jsonType}}*{{#if this.itemFormat}} *of {{this.itemFormat}}s*{{/if}}{{#if this.required}} (Required){{/if}}
37+
**`{{this.name}}`** {{#if this.jsonType}}*{{this.jsonType}}*{{/if}}{{#if this.itemFormat}} *of {{this.itemFormat}}s*{{/if}}{{#if this.required}} (Required){{/if}}
3838
{{#if this.description}}
3939

4040
{{this.description}}
@@ -82,7 +82,7 @@ None
8282
---
8383

8484
## Examples
85-
85+
8686
{{#with primaryCodeSample}}
8787
### {{this.title}}
8888

0 commit comments

Comments
 (0)