From dc9e90b9703ed144ad8459db588e3264a1d8e9d2 Mon Sep 17 00:00:00 2001 From: Dan Jones <dan.jones@noc.ac.uk> Date: Thu, 19 Jan 2023 13:48:47 +0000 Subject: [PATCH] fix: correct comment typo --- dist/protocol.esm.js | 2 +- dist/protocol.js | 2 +- src/protocol/index.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/protocol.esm.js b/dist/protocol.esm.js index e2120da..1577188 100644 --- a/dist/protocol.esm.js +++ b/dist/protocol.esm.js @@ -4,7 +4,7 @@ import Validator from 'swagger-model-validator'; * GenericProtocol defines a simple passthru handler for messages * This can be extended to handle different schemas * - * The assunption is that all messages conform to a single + * The assumption is that all messages conform to a single * wrapper schema definition. Different payloads are handled * by a oneOf definitions within the schema determined by a * field value. diff --git a/dist/protocol.js b/dist/protocol.js index 7d0716e..772a3ca 100644 --- a/dist/protocol.js +++ b/dist/protocol.js @@ -6,7 +6,7 @@ var Validator = require('swagger-model-validator'); * GenericProtocol defines a simple passthru handler for messages * This can be extended to handle different schemas * - * The assunption is that all messages conform to a single + * The assumption is that all messages conform to a single * wrapper schema definition. Different payloads are handled * by a oneOf definitions within the schema determined by a * field value. diff --git a/src/protocol/index.js b/src/protocol/index.js index d4d3316..bb67711 100644 --- a/src/protocol/index.js +++ b/src/protocol/index.js @@ -4,7 +4,7 @@ import Validator from 'swagger-model-validator'; * GenericProtocol defines a simple passthru handler for messages * This can be extended to handle different schemas * - * The assunption is that all messages conform to a single + * The assumption is that all messages conform to a single * wrapper schema definition. Different payloads are handled * by a oneOf definitions within the schema determined by a * field value. -- GitLab