Skip to content

Commit c21c413

Browse files
authored
Merge pull request rails#44494 from ghousemohamed/patch-10
2 parents c9c1768 + ea0685f commit c21c413

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

guides/source/3_0_release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ Helpers that do something else, like `cache` or `content_for`, are not affected
338338
#### Other Changes
339339

340340
* You no longer need to call `h(string)` to escape HTML output, it is on by default in all view templates. If you want the unescaped string, call `raw(string)`.
341-
* Helpers now output HTML 5 by default.
341+
* Helpers now output HTML5 by default.
342342
* Form label helper now pulls values from I18n with a single value, so `f.label :name` will pull the `:name` translation.
343343
* I18n select label on should now be :en.helpers.select instead of :en.support.select.
344344
* You no longer need to place a minus sign at the end of a Ruby interpolation inside an ERB template to remove the trailing carriage return in the HTML output.

guides/source/layouts_and_rendering.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ In addition to the above special tags, you can supply a final hash of standard H
966966

967967
#### Linking to Videos with the `video_tag`
968968

969-
The [`video_tag`][] helper builds an HTML 5 `<video>` tag to the specified file. By default, files are loaded from `public/videos`.
969+
The [`video_tag`][] helper builds an HTML5 `<video>` tag to the specified file. By default, files are loaded from `public/videos`.
970970

971971
```erb
972972
<%= video_tag "movie.ogg" %>
@@ -1005,7 +1005,7 @@ This will produce:
10051005

10061006
#### Linking to Audio Files with the `audio_tag`
10071007

1008-
The [`audio_tag`][] helper builds an HTML 5 `<audio>` tag to the specified file. By default, files are loaded from `public/audios`.
1008+
The [`audio_tag`][] helper builds an HTML5 `<audio>` tag to the specified file. By default, files are loaded from `public/audios`.
10091009

10101010
```erb
10111011
<%= audio_tag "music.mp3" %>

0 commit comments

Comments
 (0)