chore: remove trailing whitespace

This commit is contained in:
Will Brindle 2019-10-08 21:40:15 +01:00
parent f84f807bf1
commit 32554e271f
1 changed files with 1 additions and 1 deletions

View File

@ -1523,7 +1523,7 @@ impl<'gc> Avm1<'gc> {
// The same as normal equality but types must match
let a = self.pop()?;
let b = self.pop()?;
let result = a == b;
let result = a == b;
self.push(Value::Bool(result));
Ok(())
}