Skip to content

Commit 6ab288a

Browse files
committed
Remove JS101: fixes
1 parent f2e839e commit 6ab288a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

page/about-jquery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111

1212
Getting started with jQuery can be easy or challenging, depending on your experience with JavaScript, HTML, CSS, and programming concepts in general. In addition to these articles, you can read about the [history of jQuery](https://jquery.org/history/) and the [licensing terms](https://jquery.org/license/) that apply to jQuery projects. You can also [make a donation](https://jquery.org/donate/) to help the [jQuery team](https://jquery.org/team/) continue to improve jQuery.
1313

14-
One important thing to know is that jQuery is just a __JavaScript library__. All the power of jQuery is accessed via JavaScript, so needless to say, it's an important language to learn. Having a basic knowledge of JavaScript will go a long way in understanding, structuring, and debugging your code. If you're new to JavaScript we recommend to check out [the JavaScript basics tutorial on MDN](https://developer.mozilla.org/en-US/Learn/Getting_started_with_the_web/JavaScript_basics).
14+
One important thing to know is that jQuery is just a __JavaScript library__. All the power of jQuery is accessed via JavaScript, so needless to say, it's an important language to learn. Having a basic knowledge of JavaScript will go a long way in understanding, structuring, and debugging your code. If you're new to JavaScript we recommend to check out the [JavaScript basics tutorial](https://developer.mozilla.org/en-US/Learn/Getting_started_with_the_web/JavaScript_basics) on the Mozilla Developer Network (MDN).

page/using-jquery-core/utility-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ $( "#foo" ).click( $.proxy( myObject, "myFn" ) ); // myObject
106106

107107
## Testing Type
108108

109-
Sometimes the `typeof` operator [can be confusing or incosistent](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/typeof). So instead of using `typeof`, jQuery offers utility methods to help determine the type of a value.
109+
Sometimes the `typeof` operator [can be confusing or incosistent](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/typeof), so instead of using `typeof`, jQuery offers utility methods to help determine the type of a value.
110110

111111
First of all, you have methods to test if a specific value is of a specific type.
112112

0 commit comments

Comments
 (0)