From 6605b3264f252e8ddff9e96a116c00e602862193 Mon Sep 17 00:00:00 2001 From: CHatingPython Date: Fri, 5 Jun 2026 18:06:54 +0200 Subject: [PATCH] docs: fix typo in PushConstant instruction --- furvm/include/furvm/instruction.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/furvm/include/furvm/instruction.hpp b/furvm/include/furvm/instruction.hpp index 1e6b4f5..e6fabc3 100644 --- a/furvm/include/furvm/instruction.hpp +++ b/furvm/include/furvm/instruction.hpp @@ -14,7 +14,7 @@ enum class instruction_t : std::uint8_t { /** * @brief Pushes a constant onto the stack. * - * Pushes a constant from the constant pool denoted by two next bytes in low-endian onto the stack. + * Pushes a constant from the constant pool denoted by two next bytes in little-endian onto the stack. */ PushConstant,