Skip to content

Commit

Permalink
Merge pull request rust-lang#1039 from ehuss/fix-html-config
Browse files Browse the repository at this point in the history
Fix merge conflict.
  • Loading branch information
ehuss authored Sep 26, 2019
2 parents 76ce290 + 70db45b commit c1d26fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/html_handlebars/hbs_renderer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ fn make_data(

if html_config.playpen.editable && html_config.playpen.copy_js {
data.insert("playpen_js".to_owned(), json!(true));
if html.playpen.line_numbers {
if html_config.playpen.line_numbers {
data.insert("playpen_line_numbers".to_owned(), json!(true));
}
}
Expand Down

0 comments on commit c1d26fa

Please sign in to comment.