From e501215a537c1286a0284581e0e0d15d04bc041e Mon Sep 17 00:00:00 2001 From: Nick Narbone Date: Wed, 22 Nov 2017 13:40:10 -0500 Subject: [PATCH] update JSDoc comment. Remove trailing space tests were failing due to no trailing space eslint rule. --- src/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils.js b/src/utils.js index a6dc8c94890..68809e9b837 100644 --- a/src/utils.js +++ b/src/utils.js @@ -794,10 +794,10 @@ export function getBidderRequest(bidRequests, bidder, adUnitCode) { } /** - * Returns the origin + * Returns the origin */ export function getOrigin() { - // IE10 does not have this propery. https://gist.github.com/hbogs/7908703 + // IE10 does not have this property. https://gist.github.com/hbogs/7908703 if (!window.location.origin) { return window.location.protocol + '//' + window.location.hostname + (window.location.port ? ':' + window.location.port : ''); } else {