Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo in comments #73

Merged
merged 1 commit into from Mar 27, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/nwmatcher.js
Expand Up @@ -315,10 +315,10 @@
// detect Opera browser
OPERA = /opera/i.test(string.call(global.opera)),

// skip simpe selector optimizations for Opera >= 11
// skip simple selector optimizations for Opera >= 11
OPERA_QSAPI = OPERA && parseFloat(opera.version()) >= 11,

// check Seletor API implementations
// check Selector API implementations
RE_BUGGY_QSAPI = NATIVE_QSAPI ?
(function() {
var pattern = [ ], div = doc.createElement('div'), element,
Expand All @@ -331,7 +331,7 @@
return result;
};

// ^= $= *= operators bugs whith empty values (Opera 10 / IE8)
// ^= $= *= operators bugs with empty values (Opera 10 / IE8)
element = doc.createElement('p');
element.setAttribute('class', '');
expect('[class^=""]', div, element, 1) &&
Expand Down