diff --git a/features/site_data.feature b/features/site_data.feature
index 9ab94056..faa266b7 100644
--- a/features/site_data.feature
+++ b/features/site_data.feature
@@ -4,10 +4,10 @@ Feature: Site data
In order to make the site slightly dynamic
Scenario: Use page variable in a page
- Given I have an "contact.html" page with title "Contact" that contains "{{ page.title }}: email@me.com"
+ Given I have an "contact.html" page with title "Contact" that contains "{{ page.title }}: email@example.com"
When I run jekyll
Then the _site directory should exist
- And I should see "Contact: email@me.com" in "_site/contact.html"
+ And I should see "Contact: email@example.com" in "_site/contact.html"
Scenario Outline: Use page.path variable in a page
Given I have a
directory
@@ -95,10 +95,10 @@ Feature: Site data
Scenario: Use configuration date in site payload
Given I have an "index.html" page that contains "{{ site.url }}"
- And I have a configuration file with "url" set to "http://mysite.com"
+ And I have a configuration file with "url" set to "http://example.com"
When I run jekyll
Then the _site directory should exist
- And I should see "http://mysite.com" in "_site/index.html"
+ And I should see "http://example.com" in "_site/index.html"
Scenario: Access Jekyll version via jekyll.version
Given I have an "index.html" page that contains "{{ jekyll.version }}"
diff --git a/site/docs/deployment-methods.md b/site/docs/deployment-methods.md
index 41c5472e..63fd7021 100644
--- a/site/docs/deployment-methods.md
+++ b/site/docs/deployment-methods.md
@@ -37,7 +37,7 @@ this](http://web.archive.org/web/20091223025644/http://www.taknado.com/en/2009/0
To have a remote server handle the deploy for you every time you push changes using Git, you can create a user account which has all the public keys that are authorized to deploy in its `authorized_keys` file. With that in place, setting up the post-receive hook is done as follows:
{% highlight bash %}
-laptop$ ssh deployer@myserver.com
+laptop$ ssh deployer@example.com
server$ mkdir myrepo.git
server$ cd myrepo.git
server$ git --bare init
@@ -63,7 +63,7 @@ Finally, run the following command on any users laptop that needs to be able to
deploy using this hook:
{% highlight bash %}
-laptops$ git remote add deploy deployer@myserver.com:~/myrepo.git
+laptops$ git remote add deploy deployer@example.com:~/myrepo.git
{% endhighlight %}
Deploying is now as easy as telling nginx or Apache to look at