From 8eb51d9327945e1043b16f7e88d48ba87d8b33ba Mon Sep 17 00:00:00 2001 From: Chris White Date: Fri, 16 Apr 2021 00:29:26 -0400 Subject: [PATCH] doc: fix links from Object to values (#975) Fix two broken links from the documentation for the Object class to the page describing values. --- doc/site/modules/core/object.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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