Skip to content

Commit

Permalink
Merge pull request #703 from johanley/johanley-patch-1
Browse files Browse the repository at this point in the history
Typo / grammar
  • Loading branch information
puredanger authored Oct 30, 2024
2 parents 2d61643 + 8f675d0 commit 33c1b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/reference/data_structures.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 33c1b38

Please sign in to comment.