Skip to content

Commit 477f61d

Browse files
Merge pull request rails#42805 from lloydk/heading-level
Fix inconsistent heading level in guides [ci-skip]
2 parents 76694cc + e469025 commit 477f61d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

guides/source/3_2_release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Railties
162162

163163
* Remove old `config.paths.app.controller` API in favor of `config.paths["app/controller"]`.
164164

165-
#### Deprecations
165+
### Deprecations
166166

167167
* `Rails::Plugin` is deprecated and will be removed in Rails 4.0. Instead of adding plugins to `vendor/plugins` use gems or bundler with path or git dependencies.
168168

guides/source/action_cable_overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ consumer.subscriptions.create("AppearanceChannel", {
595595
})
596596
```
597597
598-
##### Client-Server Interaction
598+
#### Client-Server Interaction
599599
600600
1. **Client** connects to the **Server** via `App.cable =
601601
ActionCable.createConsumer("ws://cable.example.com")`. (`cable.js`). The

guides/source/action_mailer_basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ What is Action Mailer?
2222
Action Mailer allows you to send emails from your application using mailer classes
2323
and views.
2424

25-
#### Mailers are similar to controllers
25+
### Mailers are similar to controllers
2626

2727
They inherit from [`ActionMailer::Base`][] and live in `app/mailers`. Mailers also work
2828
very similarly to controllers. Some examples of similarities are enumerated below.

guides/source/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1608,7 +1608,7 @@ end
16081608

16091609
This assertion is quite powerful. For more advanced usage, refer to its [documentation](https://github.com/rails/rails-dom-testing/blob/master/lib/rails/dom/testing/assertions/selector_assertions.rb).
16101610

1611-
#### Additional View-Based Assertions
1611+
### Additional View-Based Assertions
16121612

16131613
There are more assertions that are primarily used in testing views:
16141614

0 commit comments

Comments
 (0)