From 72e9c7aee0e237298b2a95a36fe8749e229036f8 Mon Sep 17 00:00:00 2001 From: crc Date: Tue, 28 May 2019 13:10:00 +0000 Subject: [PATCH] book: word naming clarifications FossilOrigin-Name: 76aadf6c907a8f121be76ec4b038f4fe175ff43e633efe1e2c5cd8aa842d6919 --- RETRO-Book.md | 2 ++ doc/book/Programming-Techniques-Naming-Conventions | 2 ++ 2 files changed, 4 insertions(+) diff --git a/RETRO-Book.md b/RETRO-Book.md index 2217810..9084a77 100644 --- a/RETRO-Book.md +++ b/RETRO-Book.md @@ -507,6 +507,8 @@ Word names in RETRO generally follow the following conventions. * Don't use a prefix as the first character of a name * Don't use underscores in word names * Use short names for indices +* Word names start with a `-` for "not" +* Words returning a flag end in ? ## Typical Format diff --git a/doc/book/Programming-Techniques-Naming-Conventions b/doc/book/Programming-Techniques-Naming-Conventions index deb2217..8402294 100644 --- a/doc/book/Programming-Techniques-Naming-Conventions +++ b/doc/book/Programming-Techniques-Naming-Conventions @@ -9,6 +9,8 @@ Word names in RETRO generally follow the following conventions. * Don't use a prefix as the first character of a name * Don't use underscores in word names * Use short names for indices +* Word names start with a `-` for "not" +* Words returning a flag end in ? ## Typical Format