From 3845d5e9caf1ca10ebbc6bd7e9cfd9b70d6d4752 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 5 Sep 2020 16:41:13 +1000 Subject: [PATCH] docs: Fix simple typo, seperated -> separated There is a small typo in libs/jquery/jquery.js. Closes #28 --- libs/jquery/jquery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/jquery/jquery.js b/libs/jquery/jquery.js index 3774ff9..3023d85 100644 --- a/libs/jquery/jquery.js +++ b/libs/jquery/jquery.js @@ -2338,7 +2338,7 @@ jQuery.fn.extend({ classNames = value.split( rspace ); while ( (className = classNames[ i++ ]) ) { - // check each className given, space seperated list + // check each className given, space separated list state = isBool ? state : !self.hasClass( className ); self[ state ? "addClass" : "removeClass" ]( className ); }