diff --git a/boa/src/value/type.rs b/boa/src/value/type.rs index fec00c85e2..09726bdd66 100644 --- a/boa/src/value/type.rs +++ b/boa/src/value/type.rs @@ -17,9 +17,9 @@ impl JsValue { /// Get the type of a value /// /// This is the abstract operation Type(v), as described in - /// - /// so it treats `Type::Function` objects and `Type::Object` objects as `Type::Object`. - /// If you instead need to call the `typeof` operator, check [`Value::type_of`] + /// . + /// + /// Check [JsValue::type_of] if you need to call the `typeof` operator. pub fn get_type(&self) -> Type { match *self { Self::Rational(_) | Self::Integer(_) => Type::Number,