Fix doc for BEHAVIOR

This commit is contained in:
mgcaret 2020-01-22 17:56:29 -08:00
parent 16399c6618
commit 8e8d3133f5
2 changed files with 5 additions and 3 deletions

View File

@ -5822,7 +5822,8 @@ dword DEFER,"DEFER"
EXIT
eword
; H: ( [name< >] -- ) Return the first cell of the body of name, which should be a DEFER word.
; H: ( xt -- ) Return the first cell of the body of word at xt, normally a DEFER word
; H: but will do the same on some other types of words (CREATE, VARIABLE, VALUE, etc).
dword BEHAVIOR,"BEHAVIOR"
ENTER
.dword rBODY

View File

@ -1,6 +1,6 @@
# Forth Dictionary
Updated: 2020-01-22 17:13:58 -0800
Updated: 2020-01-22 17:56:07 -0800
## !
@ -632,7 +632,8 @@ Execution: _( -- )_ start a BEGIN loop
## BEHAVIOR
_( [name< >] -- )_ Return the first cell of the body of name, which should be a DEFER word.
_( xt -- )_ Return the first cell of the body of word at xt, normally a DEFER word
but will do the same on some other types of words (CREATE, VARIABLE, VALUE, etc).
## BELL