aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-08-17 09:53:59 -0700
committerZachary Scott <e@zzak.io>2014-08-17 09:53:59 -0700
commitaee1ba42339df2baf6b44af01f270ae2d37863e1 (patch)
tree80b7b08974abf7d7b6d30bde7caa9af68261a9c4
parenteb714d4460c39c8fb6d853d84d112aa9aa1ad63d (diff)
parent2ba1670f378242438665b43819e41b31ca856bcc (diff)
downloadrails-aee1ba42339df2baf6b44af01f270ae2d37863e1.tar.gz
rails-aee1ba42339df2baf6b44af01f270ae2d37863e1.tar.bz2
rails-aee1ba42339df2baf6b44af01f270ae2d37863e1.zip
Merge pull request #16529 from y-yagi/patch-1
[ci skip] Fix sample code in Layouts and Rendering guide
-rw-r--r--guides/source/layouts_and_rendering.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/layouts_and_rendering.md b/guides/source/layouts_and_rendering.md
index f00f7bca1b..8b37b92139 100644
--- a/guides/source/layouts_and_rendering.md
+++ b/guides/source/layouts_and_rendering.md
@@ -903,7 +903,7 @@ You can also specify multiple videos to play by passing an array of videos to th
This will produce:
```erb
-<video><source src="trailer.ogg" /><source src="movie.ogg" /></video>
+<video><source src="/videos/trailer.ogg" /><source src="/videos/trailer.flv" /></video>
```
#### Linking to Audio Files with the `audio_tag`