Procedure definition example should not say macro (#7467)

The word "macro" appears in the text of the procedure definition
example, but it should be "procedure" instead.
This commit is contained in:
Robin Munn 2023-05-19 16:14:02 +07:00 committed by GitHub
parent 6941d079b8
commit d4846bae6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ Procedures are created using the [[Pragma: \procedure]] at the start of a tiddle
```
\define my-procedure(param)
This is the macro text (param=<<param>>)
This is the procedure text (param=<<param>>)
\end
```