Skip to content

Commit

Permalink
Auto merge of #11786 - notriddle:cleanup, r=jdm
Browse files Browse the repository at this point in the history
Alignment is wrong.

Fix off-alignment.
---
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes do not fix any particular issue number
- [X] These changes do not require tests because refactoring

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11786)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo committed Jun 18, 2016
2 parents ca26e95 + b082dce commit 2cea418
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions components/layout/text.rs
Expand Up @@ -233,13 +233,13 @@ impl TextRunScanner {

if flush_mapping {
mapping.flush(&mut mappings,
&mut run_info,
&**text,
compression,
text_transform,
&mut last_whitespace,
&mut start_position,
end_position);
&mut run_info,
&**text,
compression,
text_transform,
&mut last_whitespace,
&mut start_position,
end_position);
if run_info.text.len() > 0 {
if flush_run {
run_info.flush(&mut run_info_list, &mut insertion_point);
Expand Down

0 comments on commit 2cea418

Please sign in to comment.