aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2014-12-15 18:12:29 +0000
committerVijay Dev <vijaydev.cse@gmail.com>2014-12-15 18:12:29 +0000
commit2ed2be1ccc0893b7b16ed16004b20bb992a06526 (patch)
treed2342df33325e2f2099d8e3c4b597f74e5487eb4 /guides
parent1a2341038080155ca691a198f6497dba31bc8ce5 (diff)
parentbb0d6389e58d782b8b4fcec40d933c06be8734f0 (diff)
downloadrails-2ed2be1ccc0893b7b16ed16004b20bb992a06526.tar.gz
rails-2ed2be1ccc0893b7b16ed16004b20bb992a06526.tar.bz2
rails-2ed2be1ccc0893b7b16ed16004b20bb992a06526.zip
Merge branch 'master' of github.com:rails/docrails
Diffstat (limited to 'guides')
-rw-r--r--guides/source/layouts_and_rendering.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/guides/source/layouts_and_rendering.md b/guides/source/layouts_and_rendering.md
index ae16ad86cd..28fa61a964 100644
--- a/guides/source/layouts_and_rendering.md
+++ b/guides/source/layouts_and_rendering.md
@@ -904,7 +904,10 @@ You can also specify multiple videos to play by passing an array of videos to th
This will produce:
```erb
-<video><source src="/videos/trailer.ogg" /><source src="/videos/trailer.flv" /></video>
+<video>
+ <source src="/videos/trailer.ogg">
+ <source src="/videos/movie.ogg">
+</video>
```
#### Linking to Audio Files with the `audio_tag`