From c89d8f4ed3700602babbe05d97af42cfdb4ddc36 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 13 Oct 2019 02:23:22 -0400 Subject: [PATCH] spelling: browser --- src/core/Dish.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/Dish.mjs b/src/core/Dish.mjs index 64bdf3fb..1d592cbd 100755 --- a/src/core/Dish.mjs +++ b/src/core/Dish.mjs @@ -129,7 +129,7 @@ class Dish { * * @param {number} type - The data type of value, see Dish enums. * @param {boolean} [notUTF8=false] - Do not treat strings as UTF8. - * @returns {* | Promise} - (Broswer) A promise | (Node) value of dish in given type + * @returns {* | Promise} - (Browser) A promise | (Node) value of dish in given type */ get(type, notUTF8=false) { if (typeof type === "string") { @@ -191,7 +191,7 @@ class Dish { * * @param {number} type - The data type of value, see Dish enums. * @param {boolean} [notUTF8=false] - Do not treat strings as UTF8. - * @returns {Dish | Promise} - (Broswer) A promise | (Node) value of dish in given type + * @returns {Dish | Promise} - (Browser) A promise | (Node) value of dish in given type */ presentAs(type, notUTF8=false) { const clone = this.clone();