docs: fix typos and update https references (#8154)

Co-authored-by: Tim Lai <timothy.lai@smartbear.com>
This commit is contained in:
Andreas Deininger
2022-08-12 19:14:27 +02:00
committed by GitHub
parent 7e65155a7b
commit 9891d97201
19 changed files with 29 additions and 29 deletions

View File

@@ -235,7 +235,7 @@ describe("feature: OpenAPI 3 allowEmptyValue", function () {
.to.contain(`GET "http://localhost:3230/emptyValueParams"`)
})
})
describe("send empty inital value behavior", function () {
describe("send empty initial value behavior", function () {
it("should send an empty integer value", function (client) {
const paramSelector = `tr[data-param-name="int"]`

View File

@@ -68,7 +68,7 @@ components:
description: a human readable message explaining the error
type: string
reason:
description: a functionnal key about the error
description: a functional key about the error
type: string
responses:
Unauthorized:

View File

@@ -1,13 +1,13 @@
openapi: 3.0.0
info:
description: |
This is a test to show how model refererence from another file are failing.
This is a test to show how model reference from another file fails.
This file references api2.yaml. If you load this file first in the browser it fails.
However, if you load api2.yaml first, then load this one it will work.
version: 1.0.0
title: API1 Test
paths:
'/test-api-1':
'/test-api-1':
get:
summary: Api 1
responses:
@@ -29,4 +29,4 @@ components:
api1prop:
$ref: '#/components/schemas/Api1Prop'
api2prop:
$ref: 'api2.yaml#/components/schemas/Api2Prop'
$ref: 'api2.yaml#/components/schemas/Api2Prop'

View File

@@ -1,13 +1,13 @@
openapi: 3.0.0
info:
description: |
This is a test to show how model refererence from another file are failing.
This is a test to show how model reference from another file fails.
This file is referenced api1.yaml. If you load api1.yaml first in the browser it fails.
However, if you load this file first, then load api1.yaml it will work.
version: 1.0.0
title: API2 Test
paths:
'/test-api-2':
'/test-api-2':
get:
summary: Api 2
responses:
@@ -29,4 +29,4 @@ components:
description: This is a test prop
properties:
api2prop:
$ref: '#/components/schemas/Api2Prop'
$ref: '#/components/schemas/Api2Prop'