Fix tabs in readme.

This commit is contained in:
Christoffer Lerno
2024-12-10 23:14:14 +01:00
parent 62dca4f1c5
commit 5e6a3d9d8e

View File

@@ -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;