diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-06-20 08:24:56 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-06-20 08:24:56 -0700 |
commit | 9aa7577446ff484b6a2d6713637bfbafe931f458 (patch) | |
tree | b7fd334ce5a94e1320f933d806e3ef96530b9d40 | |
parent | 3ffc2ed8f32237969fb202f89200df01e7fbdbc8 (diff) | |
download | text.love-9aa7577446ff484b6a2d6713637bfbafe931f458.tar.gz |
clearer copy
-rw-r--r-- | Manual_tests.md | 5 |
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`. |