Unlike other "description" properties, parameter's ones are html escaped. Example : ```yaml { "name": "petId", "in": "path", "required": true, "description": "Pet's id to retrieve", "schema": { "type": "string" } } ``` will generate : ```ts /** * Pet's id to retrieve */ petId: string; ``` It should be : ```ts /** * Pet's id to retrieve */ petId: string; ```