about summary refs log tree commit diff stats
path: root/Manual_tests.md
diff options
context:
space:
mode:
Diffstat (limited to 'Manual_tests.md')
-rw-r--r--Manual_tests.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/Manual_tests.md b/Manual_tests.md
index 715c50b..8c1398e 100644
--- a/Manual_tests.md
+++ b/Manual_tests.md
@@ -8,5 +8,6 @@ record those here.
 Lua is dynamically typed. Tests can't patch over lack of type-checking.
 
 * All strings are UTF-8. Bytes within them are not characters. I try to label
-  byte offsets as _offset, and character positions as _pos. For example,
-  string.sub should never use a _pos to substring, only an _offset.
+  byte offsets with the suffix `_offset`, and character positions as `_pos`.
+  For example, `string.sub` should never use a `_pos` to substring, only an
+  `_offset`.