summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'content/fate_v1/instructions')
-rw-r--r--content/fate_v1/instructions/_index.md2
-rw-r--r--content/fate_v1/instructions/addresses/_index.md (renamed from content/fate_v1/instructions/references/_index.md)2
-rw-r--r--content/fate_v1/instructions/player_choices/_index.md4
3 files changed, 4 insertions, 4 deletions
diff --git a/content/fate_v1/instructions/_index.md b/content/fate_v1/instructions/_index.md
index 95ee992..3f86e2e 100644
--- a/content/fate_v1/instructions/_index.md
+++ b/content/fate_v1/instructions/_index.md
@@ -1,6 +1,6 @@
---
title: Instructions
-weight: 3
+weight: 4
---
Instructions do not return values, but modify the memory in some way or
interact with the interpreter. Computations are valid instructions, and will be
diff --git a/content/fate_v1/instructions/references/_index.md b/content/fate_v1/instructions/addresses/_index.md
index 9beb132..e296f2c 100644
--- a/content/fate_v1/instructions/references/_index.md
+++ b/content/fate_v1/instructions/addresses/_index.md
@@ -1,5 +1,5 @@
---
-title: References
+title: Addresses
---
### DE-ALLOCATION
{{< fatecode >}}(free [POINTER]){{< /fatecode >}}
diff --git a/content/fate_v1/instructions/player_choices/_index.md b/content/fate_v1/instructions/player_choices/_index.md
index a0dba20..4aea5a0 100644
--- a/content/fate_v1/instructions/player_choices/_index.md
+++ b/content/fate_v1/instructions/player_choices/_index.md
@@ -2,13 +2,13 @@
title: Player Choices
---
Player choices are the main way to interact with the user, by presenting them
-with a list of `[RICH TEXT]` choices, and executing a list of instructions
+with a list of `[TEXT]` choices, and executing a list of instructions
associated to the choice they have made.
### CHOICE OPTION
{{< fatecode >}}([TEXT] [I0 = INSTRUCTION] ... [IN = INSTRUCTION]){{< /fatecode >}}
-Adds a choice showing `[RICH TEXT]` to the user, and executing `[I0]` ... `[IN]`
+Adds a choice showing `[TEXT]` to the user, and executing `[I0]` ... `[IN]`
if chosen.
### CHOICE PROMPT