From 4eedeebd4660b55cf68586f0430f548845af2f1a Mon Sep 17 00:00:00 2001 From: wfnuser Date: Tue, 24 Dec 2019 12:57:55 +0800 Subject: [PATCH] other/typos in flowDb --- src/diagrams/flowchart/flowDb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/diagrams/flowchart/flowDb.js b/src/diagrams/flowchart/flowDb.js index 11e7ebf6c..4398bf7e2 100644 --- a/src/diagrams/flowchart/flowDb.js +++ b/src/diagrams/flowchart/flowDb.js @@ -65,7 +65,7 @@ export const addVertex = function(_id, text, type, style, classes) { if (typeof text !== 'undefined') { txt = sanitize(text.trim()); - // strip quotes if string starts and exnds with a quote + // strip quotes if string starts and ends with a quote if (txt[0] === '"' && txt[txt.length - 1] === '"') { txt = txt.substring(1, txt.length - 1); }