From 065ce392953da07acfad75017f23d68b1cadfccf Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 3 Apr 2020 20:45:09 +1100 Subject: [PATCH] docs: Fix simple typo, seperated -> separated There is a small typo in support/jquery.js. Should read `separated` rather than `seperated`. --- support/jquery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/jquery.js b/support/jquery.js index 034f412..c13f0c9 100644 --- a/support/jquery.js +++ b/support/jquery.js @@ -2278,7 +2278,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 ); }