avm1: Fix doc typo

This commit is contained in:
Mike Welsh 2019-09-27 17:58:40 -07:00
parent 67506e54ca
commit 1c88de5132
1 changed files with 1 additions and 1 deletions

View File

@ -524,7 +524,7 @@ impl<'gc> Avm1<'gc> {
// TODO(Herschel): SWF19: "If A is zero, the result NaN, Infinity, or -Infinity is pushed to the in SWF 5 and later.
// In SWF 4, the result is the string #ERROR#.""
// Seems to be unture for SWF v4, I get 1.#INF.
// Seems to be untrue for SWF v4, I get 1.#INF.
self.push(Value::Number(b.into_number_v1() / a.into_number_v1()));
Ok(())