From 5e6a3d9d8e67090f73b9a123a5cc1876524e3a86 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Tue, 10 Dec 2024 23:14:14 +0100 Subject: [PATCH] Fix tabs in readme. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad146dcc7..0836d1192 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ fn void Stack.push(Stack* this, Type element) if (this.capacity == this.size) { this.capacity *= 2; - if (this.capacity < 16) this.capacity = 16; + if (this.capacity < 16) this.capacity = 16; this.elems = realloc(this.elems, Type.sizeof * this.capacity); } this.elems[this.size++] = element;