summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-04-04 16:02:54 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2020-04-04 16:02:54 -0400
commit149f2e9fa65a77be9021f5197c21d8fd70102984 (patch)
tree755eac7cf709f502354c9622b69f545c1a789be8 /types.h
parent0c37c8fc1a2861b193b4c130d0df93b3df44956c (diff)
Slice.n => Slice.len
Diffstat (limited to 'types.h')
-rw-r--r--types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/types.h b/types.h
index f216197..e3d59d2 100644
--- a/types.h
+++ b/types.h
@@ -148,7 +148,7 @@ typedef struct HashTable {
} HashTable;
typedef struct Slice {
- I64 n;
+ I64 len;
void *data;
} Slice;