From 63cb1968d24c8b3f0c0d3e21f946fb0a7a527e45 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 13 Aug 2022 09:01:45 -0500 Subject: [PATCH] docs: fix typo 'primitve' --- docs/overview/extension_classes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/extension_classes.md b/docs/overview/extension_classes.md index cc8051f2..244e8236 100644 --- a/docs/overview/extension_classes.md +++ b/docs/overview/extension_classes.md @@ -11,7 +11,7 @@ trait Hashable { } ``` -The problem with that type is that it won't work with Ints, Strings or any other primitve type ... Sure, we could add the definition to Integers, but do we really want to do that? Or we could Box the integer ... But that's going to be a lot of overhead ... That's what extension classes are for: +The problem with that type is that it won't work with Ints, Strings or any other primitive type ... Sure, we could add the definition to Integers, but do we really want to do that? Or we could Box the integer ... But that's going to be a lot of overhead ... That's what extension classes are for: ``` extension class String uses Hashable {