From ac4e06924f7eb8b3fb4635bf061cf3110c21fad0 Mon Sep 17 00:00:00 2001 From: Diego Tori Date: Tue, 3 Dec 2024 12:55:46 -0500 Subject: [PATCH] Fixed a dart lint issue due to HTML in the documentation of _importJSLibraries. --- wakelock_plus/lib/src/web_impl/import_js_library.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wakelock_plus/lib/src/web_impl/import_js_library.dart b/wakelock_plus/lib/src/web_impl/import_js_library.dart index a388c43..562d77b 100644 --- a/wakelock_plus/lib/src/web_impl/import_js_library.dart +++ b/wakelock_plus/lib/src/web_impl/import_js_library.dart @@ -43,7 +43,7 @@ web.HTMLScriptElement _createScriptTag(String library) { return script; } -/// Injects a bunch of libraries in the and returns a +/// Injects a bunch of libraries in the `` and returns a /// Future that resolves when all load. Future _importJSLibraries(List libraries) { final loading = >[];