diff --git a/doc/site/modules/core/object.markdown b/doc/site/modules/core/object.markdown index 4acda708..58d69cb5 100644 --- a/doc/site/modules/core/object.markdown +++ b/doc/site/modules/core/object.markdown @@ -5,7 +5,7 @@ ### **same**(obj1, obj2) Returns `true` if *obj1* and *obj2* are the same. For [value -types](../values.html), this returns `true` if the objects have equivalent +types](../../values.html), this returns `true` if the objects have equivalent state. In other words, numbers, strings, booleans, and ranges compare by value. For all other objects, this returns `true` only if *obj1* and *obj2* refer to @@ -26,7 +26,7 @@ Returns `false`, since most objects are considered [true][]. ### **==**(other) and **!=**(other) operators Compares two objects using built-in equality. This compares [value -types](../values.html) by value, and all other objects are compared by +types](../../values.html) by value, and all other objects are compared by identity—two objects are equal only if they are the exact same object. ### **is**(class) operator