diff --git a/docs/articles/getting_started.md b/docs/articles/getting_started.md
index 1d867280..751c789e 100644
--- a/docs/articles/getting_started.md
+++ b/docs/articles/getting_started.md
@@ -1,6 +1,6 @@
# Getting Started
-The Strand Web Components library is built on Google's Polymer. If you're unfamiliar, get started by reading the Polymer API developer guide. The Strand documentation does not attempt to duplicate information which can be found in the Polymer documentation (e.g. component life cycle, etc.). To get started using Strand Web Components in your project, follow the steps below:
+The Strand Web Components library is built on Google's Polymer. If you're unfamiliar, get started by reading the Polymer API developer guide. The Strand documentation does not attempt to duplicate information which can be found in the Polymer documentation (e.g. component life cycle, etc.). To get started using Strand Web Components in your project, follow the steps below:
## Latest Version
@@ -13,7 +13,7 @@ $ bower install strand
Add the webcomponentsjs polyfills and the Strand library to your `head` tag.
```html
-
+
```
@@ -28,7 +28,7 @@ Start adding web component tags to your markup or template wherever you would li
To add an event trigger for when all Polymer elements on the page have been upgraded and are ready to use, try the following:
```javascript
-window.addEventListener("polymer-ready", function() {
+window.addEventListener("WebComponentsReady", function() {
// Your web components are ready!
// Do whatever you need to do here.
var coolBtn = document.querySelector("#coolBtn");