diff --git a/helpers/all.js b/helpers/all.js index cc5a32363..14332f490 100644 --- a/helpers/all.js +++ b/helpers/all.js @@ -134,7 +134,7 @@ export function includeFile(pathFile) { */ export function stringifySpec(asyncapi) { const stringifiedDoc = stringify(asyncapi); - if(stringifiedDoc === undefined) throw new Error("Unable to stringify parsed AsyncAPI document given by the generator, this should never happen... Please raise an issue for the html-template.") + if(stringifiedDoc === undefined) throw new Error("Unable to stringify parsed AsyncAPI document passed by the generator. Please report an issue in https://github.com/asyncapi/html-template repository.") return stringifiedDoc }