diff options
author | Lars Bergstrom <lars@lars.com> | 2014-04-05 10:11:38 +0200 |
---|---|---|
committer | Lars Bergstrom <lars@lars.com> | 2014-04-27 15:46:12 -0500 |
commit | 948daf242278b22d7a15c1c594129785d1cff538 (patch) | |
tree | 513345ea70f134bf4a85d8e2cdbe166bfee904f6 /src/components/script/dom/processinginstruction.rs | |
parent | 4942cc76bd2c88e5fdc2b4de4c1ac4576100b455 (diff) | |
download | servo-948daf242278b22d7a15c1c594129785d1cff538.tar.gz servo-948daf242278b22d7a15c1c594129785d1cff538.zip |
This batch of changes upgrades Servo to work with the Rust upgrade as of
April 10, 2014. The main changes are to privacy, to work around the
issues with incorrect bounds on the libstd `Arc<Mutex<T>>`, and the
various API changes strewn throughout the libraries.
Diffstat (limited to 'src/components/script/dom/processinginstruction.rs')
-rw-r--r-- | src/components/script/dom/processinginstruction.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/script/dom/processinginstruction.rs b/src/components/script/dom/processinginstruction.rs index 85d247fe94a..89d8524fa3a 100644 --- a/src/components/script/dom/processinginstruction.rs +++ b/src/components/script/dom/processinginstruction.rs @@ -14,8 +14,8 @@ use servo_util::str::DOMString; /// An HTML processing instruction node. #[deriving(Encodable)] pub struct ProcessingInstruction { - characterdata: CharacterData, - target: DOMString, + pub characterdata: CharacterData, + pub target: DOMString, } impl ProcessingInstructionDerived for EventTarget { |