Skip to content

Commit

Permalink
Getting Started Guide: update link_to string argument to use single-q…
Browse files Browse the repository at this point in the history
…uote mark, following document style [ci skip]
  • Loading branch information
fgo committed Sep 26, 2013
1 parent a6e1a73 commit 7e31fbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/source/getting_started.md
Expand Up @@ -846,7 +846,7 @@ Open `app/views/welcome/index.html.erb` and modify it as follows:

```html+erb
<h1>Hello, Rails!</h1>
<%= link_to "My Blog", controller: "posts" %>
<%= link_to 'My Blog', controller: 'posts' %>
```

The `link_to` method is one of Rails' built-in view helpers. It creates a
Expand Down

0 comments on commit 7e31fbc

Please sign in to comment.