diff options
author | Eric Holk <eric.holk@gmail.com> | 2012-07-26 16:03:32 -0700 |
---|---|---|
committer | Eric Holk <eric.holk@gmail.com> | 2012-07-26 16:03:32 -0700 |
commit | 7f6e5e5f93e255ff3d566e4026c22b30c1f8739c (patch) | |
tree | f65d5b0a70b4b589acf98bd51645ab9ad15b7397 /src/servo/parser/html_builder.rs | |
parent | 8f1f4f479d553fe5a92120bd4186170fe41158d0 (diff) | |
download | servo-7f6e5e5f93e255ff3d566e4026c22b30c1f8739c.tar.gz servo-7f6e5e5f93e255ff3d566e4026c22b30c1f8739c.zip |
Fix compile error
Diffstat (limited to 'src/servo/parser/html_builder.rs')
-rw-r--r-- | src/servo/parser/html_builder.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/servo/parser/html_builder.rs b/src/servo/parser/html_builder.rs index 445381f25e7..f2f83342ddf 100644 --- a/src/servo/parser/html_builder.rs +++ b/src/servo/parser/html_builder.rs @@ -124,7 +124,7 @@ fn css_link_listener(to_parent : comm::chan<Stylesheet>, from_parent : comm::por to_parent.send(css_rules); } -fn js_script_listener(to_parent : chan<~[~[u8]]>, from_parent : comm::port<js_message>) { +fn js_script_listener(to_parent : comm::chan<~[~[u8]]>, from_parent : comm::port<js_message>) { let mut result_vec = ~[]; loop { |