diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-12-16 10:45:25 -0800 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-12-16 10:45:25 -0800 |
commit | 445113222905b96c4cc648c587ab8c2b451fd484 (patch) | |
tree | a4383876e150958e8899946bcf0ba6e4d508926e | |
parent | e7b8769cbc821f07f1bd3505999da8d610bed538 (diff) | |
parent | 80dbcf629c2d6a28109edafb15c144c3f83e8be8 (diff) | |
download | rails-445113222905b96c4cc648c587ab8c2b451fd484.tar.gz rails-445113222905b96c4cc648c587ab8c2b451fd484.tar.bz2 rails-445113222905b96c4cc648c587ab8c2b451fd484.zip |
Merge pull request #13338 from shreve/patch-1
Fix url leak in application templates guide
-rw-r--r-- | guides/source/rails_application_templates.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/rails_application_templates.md b/guides/source/rails_application_templates.md index 711d910184..70e7c97b8a 100644 --- a/guides/source/rails_application_templates.md +++ b/guides/source/rails_application_templates.md @@ -78,7 +78,7 @@ end Adds the given source to the generated application's `Gemfile`. -For example, if you need to source a gem from "http://code.whytheluckystiff.net": +For example, if you need to source a gem from "[http://code.whytheluckystiff.net](http://code.whytheluckystiff.net)": ```ruby add_source "http://code.whytheluckystiff.net" |