diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-12-13 10:52:53 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-12-13 10:52:53 -0800 |
commit | 3d4f57e3ba54ec4d63c1c94f35fd642b90cf1f29 (patch) | |
tree | ab04d595d9812bac399c00695a4b043d81a748a9 /starts/meaning-vm/habit-starts/learning-parts.hpp | |
parent | e06acc0c9f4cad0ea5c24b1fbb107bea0b3466d2 (diff) | |
download | standingwithresilience-3d4f57e3ba54ec4d63c1c94f35fd642b90cf1f29.tar.gz standingwithresilience-3d4f57e3ba54ec4d63c1c94f35fd642b90cf1f29.zip |
stubbed out trigger habits
Diffstat (limited to 'starts/meaning-vm/habit-starts/learning-parts.hpp')
-rw-r--r-- | starts/meaning-vm/habit-starts/learning-parts.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starts/meaning-vm/habit-starts/learning-parts.hpp b/starts/meaning-vm/habit-starts/learning-parts.hpp index a446a1d..59fe5ab 100644 --- a/starts/meaning-vm/habit-starts/learning-parts.hpp +++ b/starts/meaning-vm/habit-starts/learning-parts.hpp @@ -13,7 +13,7 @@ decl(action, happens, context); decl(happened); // happened-habit(ctx) performs actions associated with ctx[happens] decl(whenever); // whenever-habit(ctx) stores to do ctx[action] when ctx[happens] happens // providing ctx[action-context] -decl(stop); decl(when); // stop-when-habit(ctx) removes doing ctx[happens] on ctx[event] +decl(stop); decl(when); // stop-when-habit(ctx) removes doing ctx[action] on ctx[happens] decl(once); // once-habit(ctx) stores to do ctx[action] the next time ctx[happens] happens // providing ctx[action-context] |