Skip to content

Commit 8f1d753

Browse files
committed
unnecessary paragraph mark
1 parent da6197a commit 8f1d753

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Core__Object.res

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
@obj external empty: unit => {..} = ""
22

33
/**
4-
`Object.is` determines if two objects are identical in all contexts. Objects, arrays, records, and other non-primitives are only identical if they reference the **exact** same object in memory. Primitives like ints, floats, and strings are identical if they have the same value. `+0` and `-0` are distinct. NaN is
5-
equal to itself.
4+
`Object.is` determines if two objects are identical in all contexts. Objects, arrays, records, and other non-primitives are only identical if they reference the **exact** same object in memory. Primitives like ints, floats, and strings are identical if they have the same value. `+0` and `-0` are distinct. NaN is equal to itself.
65
76
**Note:** In most scenarios use `==` and `===`. If the type you want to compare by value has an `equals` function, use it.
87

0 commit comments

Comments
 (0)