aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-03-21 15:28:52 +0000
committergingerBill <bill@gingerbill.org>2023-03-21 15:28:52 +0000
commitd986eee36be683c06421a6fe362defb6e65bf9c9 (patch)
treee210ef05d0bec9245957589ab85adb87a8ed43c1 /src
parentb3e712e0b80afcf0396a94d46f5083f429ece557 (diff)
Fix typo
Diffstat (limited to 'src')
-rw-r--r--src/docs_writer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/docs_writer.cpp b/src/docs_writer.cpp
index 3c60145c9..7488e955a 100644
--- a/src/docs_writer.cpp
+++ b/src/docs_writer.cpp
@@ -915,7 +915,7 @@ gb_internal void odin_doc_update_entities(OdinDocWriter *w) {
auto entities = array_make<Entity *>(heap_allocator(), 0, w->entity_cache.count);
defer (array_free(&entities));
- ffor (u32 i = 0; i < w->entity_cache.count; i++) {
+ for (u32 i = 0; i < w->entity_cache.count; i++) {
Entity *e = w->entity_cache.entries[i].key;
array_add(&entities, e);
}