From a43bad9c193a80adaf8ff6c5e82c1eb5c20a745f Mon Sep 17 00:00:00 2001 From: Aram Malinich Date: Fri, 30 Jan 2015 22:31:16 -0700 Subject: [PATCH] Update avoid-conflicts-other-libraries.md Wording seems ambiguous, this more directly states the end reality. --- page/using-jquery-core/avoid-conflicts-other-libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page/using-jquery-core/avoid-conflicts-other-libraries.md b/page/using-jquery-core/avoid-conflicts-other-libraries.md index 88408dde..caa91aac 100644 --- a/page/using-jquery-core/avoid-conflicts-other-libraries.md +++ b/page/using-jquery-core/avoid-conflicts-other-libraries.md @@ -123,7 +123,7 @@ jQuery.noConflict(); ``` -Note that if you use this technique, you will not be able to use prototype.js methods inside the immediately invoked function that expect `$` to be prototype.js's `$`. +Note that if you use this technique, you will not be able to use prototype.js methods inside the immediately invoked function. `$` will be a reference to jQuery, not prototype.js. ### Use the Argument That's Passed to the `jQuery( document ).ready()` Function