aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/treewalker.rs
diff options
context:
space:
mode:
authorDaan Sprenkels <dsprenkels@gmail.com>2016-10-30 21:50:57 +0100
committerDaan Sprenkels <dsprenkels@gmail.com>2016-10-31 18:11:37 +0100
commit66059904b74a4dacbec8393d639d69cfd9011ea7 (patch)
treefbdff7eaefbe1a5918851b24b37c8cdf50a61874 /components/script/dom/treewalker.rs
parent179e11ad8d834dbbc4fc14209ce0c9b169085df4 (diff)
downloadservo-66059904b74a4dacbec8393d639d69cfd9011ea7.tar.gz
servo-66059904b74a4dacbec8393d639d69cfd9011ea7.zip
Remove extra spaces in function calls and declarations
Diffstat (limited to 'components/script/dom/treewalker.rs')
-rw-r--r--components/script/dom/treewalker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/treewalker.rs b/components/script/dom/treewalker.rs
index 83d74cdbd81..1dc3d22f1cf 100644
--- a/components/script/dom/treewalker.rs
+++ b/components/script/dom/treewalker.rs
@@ -215,7 +215,7 @@ impl TreeWalkerMethods for TreeWalker {
}
match node.GetFirstChild() {
None => break,
- Some (child) => {
+ Some(child) => {
// "1. Set node to its first child."
node = child;
// "2. Filter node and set result to the return value."