From 2fbf65fa130dd85694daad79bba0a8387630cbe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Mon, 29 Jun 2026 14:04:53 -0400 Subject: [PATCH] docs: fix 6 typos in comments and documentation --- .../slide/cssconf2016/doubleluo/plugin/notes/notes.js | 2 +- .../slide/cssconf2016/doubleluo/plugin/search/search.js | 2 +- .../slide/cssconf2016/doubleluo/plugin/zoom-js/zoom.js | 2 +- .../cssconf2016/nikki/js/plugin/external/external.js | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/resources/slide/cssconf2016/doubleluo/plugin/notes/notes.js b/resources/slide/cssconf2016/doubleluo/plugin/notes/notes.js index 88f98d6..0fa8220 100755 --- a/resources/slide/cssconf2016/doubleluo/plugin/notes/notes.js +++ b/resources/slide/cssconf2016/doubleluo/plugin/notes/notes.js @@ -106,7 +106,7 @@ var RevealNotes = (function() { if( !/receiver/i.test( window.location.search ) ) { - // If the there's a 'notes' query set, open directly + // If there's a 'notes' query set, open directly if( window.location.search.match( /(\?|\&)notes/gi ) !== null ) { openNotes(); } diff --git a/resources/slide/cssconf2016/doubleluo/plugin/search/search.js b/resources/slide/cssconf2016/doubleluo/plugin/search/search.js index ae6582e..e6b137a 100755 --- a/resources/slide/cssconf2016/doubleluo/plugin/search/search.js +++ b/resources/slide/cssconf2016/doubleluo/plugin/search/search.js @@ -1,6 +1,6 @@ /* * Handles finding a text string anywhere in the slides and showing the next occurrence to the user - * by navigatating to that slide and highlighting it. + * by navigating to that slide and highlighting it. * * By Jon Snyder , February 2013 */ diff --git a/resources/slide/cssconf2016/doubleluo/plugin/zoom-js/zoom.js b/resources/slide/cssconf2016/doubleluo/plugin/zoom-js/zoom.js index 95093e0..566ac84 100755 --- a/resources/slide/cssconf2016/doubleluo/plugin/zoom-js/zoom.js +++ b/resources/slide/cssconf2016/doubleluo/plugin/zoom-js/zoom.js @@ -158,7 +158,7 @@ var zoom = (function(){ } /** - * Pan the document when the mosue cursor approaches the edges + * Pan the document when the mouse cursor approaches the edges * of the window. */ function pan() { diff --git a/resources/slide/cssconf2016/nikki/js/plugin/external/external.js b/resources/slide/cssconf2016/nikki/js/plugin/external/external.js index 7e1faa5..e89c96d 100644 --- a/resources/slide/cssconf2016/nikki/js/plugin/external/external.js +++ b/resources/slide/cssconf2016/nikki/js/plugin/external/external.js @@ -1,8 +1,8 @@ /* * external.js * Cal Evans - * (c) Eevans Internet Construction Company, Inc. - * Released under the MIT licesne + * (c) Evans Internet Construction Company, Inc. + * Released under the MIT license * Load external files into a reveal.js presentation. * * This is a reveal.js plugin to load external html files. It replaces the @@ -44,7 +44,7 @@ section.innerHTML = '
' + 'ERROR: The attempt to fetch ' + url + ' failed with HTTP status ' + xhr.status + '.' + 'Check your browser\'s JavaScript console for more details.' + - '

Remember that you need to serve the presentation HTML from a HTTP server.

' + + '

Remember that you need to serve the presentation HTML from an HTTP server.

' + '
'; } @@ -57,7 +57,7 @@ xhr.send(); } catch ( e ) { - alert( 'Failed to get the file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e ); + alert( 'Failed to get the file ' + url + '. Make sure that the presentation and the file are served by an HTTP server and the file can be found there. ' + e ); } }