Redocly / museum-openapi-example

An example OpenAPI description for an imaginary Museum API.
https://redocly.com/docs/resources/learning-openapi/
MIT License
36 stars 36 forks source link

license URL has trailing space #10

Closed DavidBiesack closed 5 months ago

DavidBiesack commented 5 months ago

The source openapi.yaml contains

  license:
    name: MIT
    url: "https://opensource.org/license/mit/ "

with a trailing space. This should be

  license:
    name: MIT
    url: "https://opensource.org/license/mit/"

(I can submit a PR to fix this)