about summary refs log tree commit diff stats
path: root/Manual_tests.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-06-20 08:24:56 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-06-20 08:24:56 -0700
commit9aa7577446ff484b6a2d6713637bfbafe931f458 (patch)
treeb7fd334ce5a94e1320f933d806e3ef96530b9d40 /Manual_tests.md
parent3ffc2ed8f32237969fb202f89200df01e7fbdbc8 (diff)
downloadlines.love-9aa7577446ff484b6a2d6713637bfbafe931f458.tar.gz
clearer copy
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`.