From bb6eaf9e4ffdaa038cce11c6225584d54a59b131 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 7 Aug 2025 09:49:34 +0200 Subject: Added custom vimrc and fixed typo in examples --- examples/graphics.lua | 2 +- examples/json.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/graphics.lua b/examples/graphics.lua index 2ac5219..cd1ee12 100644 --- a/examples/graphics.lua +++ b/examples/graphics.lua @@ -1,4 +1,4 @@ -open_window(800, 800, "My Game") +open_window(800, 800, "Sample Window") set_fps(60) while window_running() do diff --git a/examples/json.lua b/examples/json.lua index f656942..17a1930 100644 --- a/examples/json.lua +++ b/examples/json.lua @@ -1,4 +1,4 @@ -local file = io.open("test/test.json", "r") +local file = io.open("examples/test.json", "r") local content = file:read("*a") file:close() -- cgit v1.2.3