From 8f675d04c74637cffbc123ccd2996b926814f8ad Mon Sep 17 00:00:00 2001 From: John O'Hanley Date: Wed, 30 Oct 2024 11:38:19 -0300 Subject: [PATCH] Typo / grammar --- content/reference/data_structures.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/reference/data_structures.adoc b/content/reference/data_structures.adoc index 0b74d531..13db4062 100644 --- a/content/reference/data_structures.adoc +++ b/content/reference/data_structures.adoc @@ -42,7 +42,7 @@ Clojure also supports the Java boxed number types derived from java.lang.Number, === Longs -By default Clojure operates with natural numbers as instances of Java's long primitive type. When a primitive integer operation results in a value that too large to be contained in a primitive value, a java.lang.ArithmeticException is thrown. Clojure provides a set of alternative math operators suffixed with an apostrophe: +', -', *', inc', and dec'. These operators auto-promote to BigInt upon overflow, but are less efficient than the regular math operators. +By default Clojure operates with natural numbers as instances of Java's long primitive type. When a primitive integer operation results in a value that is too large to be contained in a primitive value, a java.lang.ArithmeticException is thrown. Clojure provides a set of alternative math operators suffixed with an apostrophe: +', -', *', inc', and dec'. These operators auto-promote to BigInt upon overflow, but are less efficient than the regular math operators. === Ratio