aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorAndreas Scherer <andreas_coder@freenet.de>2009-02-17 14:11:59 +0100
committerAndreas Scherer <andreas_coder@freenet.de>2009-02-17 14:11:59 +0100
commit48791dda34530f1221c48740857173c267f677ca (patch)
tree2481cfca220fbf59f9d9be1e5dd1cc2b66ee1490 /railties
parent5c4af5973228e9e2d4aafbbcb89cfd08afb2370c (diff)
downloadrails-48791dda34530f1221c48740857173c267f677ca.tar.gz
rails-48791dda34530f1221c48740857173c267f677ca.tar.bz2
rails-48791dda34530f1221c48740857173c267f677ca.zip
Remove empty line that breaks 'code' formatting.
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/getting_started.textile1
1 files changed, 0 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index 7c7f7e889c..3d6c16f11c 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -387,7 +387,6 @@ To hook the posts up to the home page you've already created, you can add a link
<code lang="ruby">
<h1>Hello, Rails!</h1>
<%= link_to "My Blog", posts_path %>
-
</code>
The +link_to+ method is one of Rails' built-in view helpers. It creates a hyperlink based on text to display and where to go - in this case, to the path for posts.