diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2014-08-17 22:42:03 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2014-08-17 22:42:03 +0900 |
commit | 2ba1670f378242438665b43819e41b31ca856bcc (patch) | |
tree | 10424c8d8884dbc7105d9b0891d07fc69cb86e24 /guides | |
parent | d20270612cd9be3eed910171934a6b3463dbead7 (diff) | |
download | rails-2ba1670f378242438665b43819e41b31ca856bcc.tar.gz rails-2ba1670f378242438665b43819e41b31ca856bcc.tar.bz2 rails-2ba1670f378242438665b43819e41b31ca856bcc.zip |
[ci skip] Fix sample code in Layouts and Rendering guide
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/layouts_and_rendering.md | 2 |
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` |