aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorRichard Owen <owenrichard1@gmail.com>2013-04-28 19:43:13 +0100
committerRichard Owen <owenrichard1@gmail.com>2013-04-28 19:43:13 +0100
commitd4c8de9e489b2687909fc130efb6c9c60c3113e9 (patch)
tree76bcd5246279cece66a1745ab9a7f474e6c4ef20 /guides/source/getting_started.md
parent36ed77806b266e0219e49804009b108fe93eea42 (diff)
downloadrails-d4c8de9e489b2687909fc130efb6c9c60c3113e9.tar.gz
rails-d4c8de9e489b2687909fc130efb6c9c60c3113e9.tar.bz2
rails-d4c8de9e489b2687909fc130efb6c9c60c3113e9.zip
Move 2 images to getting_started folder. All other images in getting started guide already in this folder.
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index bdb9d3e51f..46115afb8c 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -165,7 +165,7 @@ TIP: Compiling CoffeeScript to JavaScript requires a JavaScript runtime and the
This will fire up WEBrick, a webserver built into Ruby by default. To see your application in action, open a browser window and navigate to <http://localhost:3000>. You should see the Rails default information page:
-![Welcome Aboard screenshot](images/rails_welcome.png)
+![Welcome Aboard screenshot](images/getting_started/rails_welcome.png)
TIP: To stop the web server, hit Ctrl+C in the terminal window where it's running. To verify the server has stopped you should see your command prompt cursor again. For most UNIX-like systems including Mac OS X this will be a dollar sign `$`. In development mode, Rails does not generally require you to restart the server; changes you make in files will be automatically picked up by the server.
@@ -1614,7 +1614,7 @@ class CommentsController < ApplicationController
Now if you try to create a new post, you will be greeted with a basic HTTP
Authentication challenge
-![Basic HTTP Authentication Challenge](images/challenge.png)
+![Basic HTTP Authentication Challenge](images/getting_started/challenge.png)
What's Next?
------------