From 3210b72350814f2e5d110cfff58faffd8279bb85 Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Fri, 16 Mar 2018 14:29:14 -0700 Subject: [PATCH] spelling --- performance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/performance.md b/performance.md index 973d751..cc16d23 100644 --- a/performance.md +++ b/performance.md @@ -334,7 +334,7 @@ applicable for programs on modern hardware dealing with huge amounts of data. Lots of resources on compression. Do you need to inspect the data or can it stay compressed? Do you need random access or only streaming? Compress blocks with extra index. If not just in-process but written to disk, what about migration or adding/removing fields. - You'll now be dealing with raw []byte instead of nice structued Go types. + You'll now be dealing with raw []byte instead of nice structured Go types. We will talk more about data layouts later.