From 17b4904ae3a4cef0d32df13d67aeb781a75fa7d8 Mon Sep 17 00:00:00 2001 From: sergeych Date: Tue, 23 Dec 2025 10:48:58 +0100 Subject: [PATCH] fixed test to reflect small Int caching --- docs/tutorial.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 475056e..4db27d3 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -347,8 +347,6 @@ Reference quality and object equality example: assert( null == null) // singletons assert( null === null) // but, for non-singletons: - assert( 5 == 5) - assert( 5 !== 5) assert( "foo" !== "foo" ) >>> void