diff --git a/js/navigation.js b/js/navigation.js index 731e595..a485fd1 100644 --- a/js/navigation.js +++ b/js/navigation.js @@ -7,14 +7,14 @@ ( function() { const siteNavigation = document.getElementById( 'site-navigation' ); - // Return early if the navigation don't exist. + // Return early if the navigation doesn't exist. if ( ! siteNavigation ) { return; } const button = siteNavigation.getElementsByTagName( 'button' )[ 0 ]; - // Return early if the button don't exist. + // Return early if the button doesn't exist. if ( 'undefined' === typeof button ) { return; }