From 37bd6c181cb71219e1f7189387fe89a58ebabe9b Mon Sep 17 00:00:00 2001 From: Bertrand Berthelot Date: Fri, 12 Jun 2020 08:36:39 +0200 Subject: [PATCH] fix jsdoc --- src/streaming/net/SchemeLoaderFactory.js | 2 +- src/streaming/net/URLLoader.js | 3 ++- src/streaming/utils/DefaultURLUtils.js | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/streaming/net/SchemeLoaderFactory.js b/src/streaming/net/SchemeLoaderFactory.js index 00205bfa54..e4710ff2e3 100644 --- a/src/streaming/net/SchemeLoaderFactory.js +++ b/src/streaming/net/SchemeLoaderFactory.js @@ -34,7 +34,7 @@ import HTTPLoader from '../../streaming/net/HTTPLoader'; /** * @module * @description Choose right url loader for scheme - + * @ignore */ function SchemeLoaderFactory() { diff --git a/src/streaming/net/URLLoader.js b/src/streaming/net/URLLoader.js index 8587cfc764..6d66e7e4c7 100644 --- a/src/streaming/net/URLLoader.js +++ b/src/streaming/net/URLLoader.js @@ -32,9 +32,10 @@ import FactoryMaker from '../../core/FactoryMaker'; import SchemeLoaderFactory from '../../streaming/net/SchemeLoaderFactory'; /** - * @module URLLoader + * @class URLLoader * @description Call Offline Loader or Online Loader dependaing on URL * @param {Object} cfg - dependances + * @ignore */ function URLLoader(cfg) { diff --git a/src/streaming/utils/DefaultURLUtils.js b/src/streaming/utils/DefaultURLUtils.js index 1de4be6f65..de25b9b546 100644 --- a/src/streaming/utils/DefaultURLUtils.js +++ b/src/streaming/utils/DefaultURLUtils.js @@ -37,6 +37,7 @@ import FactoryMaker from '../../core/FactoryMaker'; * Initially this is simply a method to determine the Base URL of a URL, but * should probably include other things provided all over the place such as * determining whether a URL is relative/absolute, resolving two paths etc. + * @ignore */ function DefaultURLUtils() {