From ddf74d23c3510ec029f284531a53e132168c32a3 Mon Sep 17 00:00:00 2001 From: Ismail El Korchi Date: Sat, 1 Jan 2022 22:36:42 +0100 Subject: [PATCH] Fix a typo in navigation.js (#1518) --- js/navigation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }