diff --git a/page/about-jquery/how-jquery-works.md b/page/about-jquery/how-jquery-works.md
index 4fbb1eab..425ff563 100644
--- a/page/about-jquery/how-jquery-works.md
+++ b/page/about-jquery/how-jquery-works.md
@@ -28,7 +28,7 @@ This is a basic tutorial, designed to help you get started using jQuery. If you
The `src` attribute in the `` element must point to a copy of jQuery. Download a copy of jQuery from the [Downloading jQuery](http://jquery.com/download/) page and store the `jquery.js` file in the same directory as your HTML file.
-*Note: When you download jQuery, the file name may contain a version number, e.g., `jquery-x.y.z.js`. Make sure to either rename this file to `jquery.js` or update the `src` attribute of the `` element to match the file name.*
+
**Note**: When you download jQuery, the file name may contain a version number, e.g., `jquery-x.y.z.js`. Make sure to either rename this file to `jquery.js` or update the `src` attribute of the `` element to match the file name.
### Launching Code on Document Ready
@@ -117,7 +117,7 @@ The following example illustrates the click handling code discussed above, embed
### Adding and Removing an HTML Class
-**Important:** *You must place the remaining jQuery examples inside the `ready` event so that your code executes when the document is ready to be worked on.*
+**Important:** You must place the remaining jQuery examples inside the `ready` event so that your code executes when the document is ready to be worked on.
Another common task is adding or removing a class.