mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
style: Fix a typo in stylesheet cloning.
Summary: Just something I noticed while writing unrelated code. Reviewers: jwatt Bug #: 1470105 Differential Revision: https://phabricator.services.mozilla.com/D1747 MozReview-Commit-ID: 7KMTT9Kmdwc
This commit is contained in:
parent
3a0c3224b9
commit
ce7b6616fb
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ impl DeepCloneWithLock for StylesheetContents {
|
|||
url_data: RwLock::new((*self.url_data.read()).clone()),
|
||||
namespaces: RwLock::new((*self.namespaces.read()).clone()),
|
||||
source_map_url: RwLock::new((*self.source_map_url.read()).clone()),
|
||||
source_url: RwLock::new((*self.source_map_url.read()).clone()),
|
||||
source_url: RwLock::new((*self.source_url.read()).clone()),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue