Skip to content

Commit c757ab2

Browse files
committed
chore: remove unneeded trailing whitespace
1 parent 4b681bd commit c757ab2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

actionpack/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
```ruby
1919
send_stream(filename: "subscribers.csv") do |stream|
2020
stream.writeln "email_address,updated_at"
21-
21+
2222
@subscribers.find_each do |subscriber|
2323
stream.writeln [ subscriber.email_address, subscriber.updated_at ].join(",")
2424
end
2525
end
2626
```
27-
27+
2828
*DHH*
2929

3030
* Add `ActionController::Live::Buffer#writeln` to write a line to the stream with a newline included.

actionpack/lib/action_dispatch/journey/visualizer/fsm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ function match(input) {
116116

117117
if(regexp_states[state]) {
118118
var slice_start = previous_start != null ? previous_start : start_index;
119-
119+
120120
for(var key in regexp_states[state]) {
121121
var re = new RegExp("^" + key + "$");
122122

@@ -143,7 +143,7 @@ function match(input) {
143143
var state_parts = states[key];
144144
var state = state_parts[0];
145145
var slice_start = state_parts[1];
146-
146+
147147
// we must ignore ones that are still accepting more data
148148
if (slice_start != null) continue;
149149

activerecord/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
the same name. The system will transparently encrypt these
1010
attributes before saving them into the database and will
1111
decrypt them when retrieving their values.
12-
12+
1313

1414
```ruby
1515
class Person < ApplicationRecord

0 commit comments

Comments
 (0)