aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/CHANGELOG.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-06-05 05:47:33 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-06-05 05:53:49 +0900
commitcc27e9988f9ce4e52acf491a5f67be70ab7d25d8 (patch)
tree66784714a94158ada8ddd515927478b5e5103ba5 /actiontext/CHANGELOG.md
parent502bfdeff524d1f69bc0b5b3265e146afc1f6255 (diff)
downloadrails-cc27e9988f9ce4e52acf491a5f67be70ab7d25d8.tar.gz
rails-cc27e9988f9ce4e52acf491a5f67be70ab7d25d8.tar.bz2
rails-cc27e9988f9ce4e52acf491a5f67be70ab7d25d8.zip
Unify to use 4 spaces indentation in CHANGELOGs [ci skip]
Especially, somehow `CHANGELOG.md` in actiontext and activestorage in master branch had used 3 spaces indentation.
Diffstat (limited to 'actiontext/CHANGELOG.md')
-rw-r--r--actiontext/CHANGELOG.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/actiontext/CHANGELOG.md b/actiontext/CHANGELOG.md
index 9a314db75c..d28799279f 100644
--- a/actiontext/CHANGELOG.md
+++ b/actiontext/CHANGELOG.md
@@ -1,21 +1,21 @@
-* The `fill_in_rich_text_area` system test helper locates a Trix editor and fills it in with the given HTML:
+* The `fill_in_rich_text_area` system test helper locates a Trix editor and fills it in with the given HTML:
- ```ruby
- # <trix-editor id="message_content" ...></trix-editor>
- fill_in_rich_text_area "message_content", with: "Hello <em>world!</em>"
+ ```ruby
+ # <trix-editor id="message_content" ...></trix-editor>
+ fill_in_rich_text_area "message_content", with: "Hello <em>world!</em>"
- # <trix-editor placeholder="Your message here" ...></trix-editor>
- fill_in_rich_text_area "Your message here", with: "Hello <em>world!</em>"
+ # <trix-editor placeholder="Your message here" ...></trix-editor>
+ fill_in_rich_text_area "Your message here", with: "Hello <em>world!</em>"
- # <trix-editor aria-label="Message content" ...></trix-editor>
- fill_in_rich_text_area "Message content", with: "Hello <em>world!</em>"
+ # <trix-editor aria-label="Message content" ...></trix-editor>
+ fill_in_rich_text_area "Message content", with: "Hello <em>world!</em>"
- # <input id="trix_input_1" name="message[content]" type="hidden">
- # <trix-editor input="trix_input_1"></trix-editor>
- fill_in_rich_text_area "message[content]", with: "Hello <em>world!</em>"
- ```
+ # <input id="trix_input_1" name="message[content]" type="hidden">
+ # <trix-editor input="trix_input_1"></trix-editor>
+ fill_in_rich_text_area "message[content]", with: "Hello <em>world!</em>"
+ ```
- *George Claghorn*
+ *George Claghorn*
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actiontext/CHANGELOG.md) for previous changes.