From 922b73b024a55a1bdc1c12a78848f9300d18d843 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20B=C3=B6ger?= Date: Sun, 30 Aug 2020 11:23:17 +0100 Subject: [PATCH] Sync documented `\var` and actual parameter name The procedure parameter name could equally well be changed from `id` to `proc`. Not sure which approach is more suitable - here, I chose to stick to the original procedure signature. --- lib/chibi/trace.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/chibi/trace.scm b/lib/chibi/trace.scm index d07e7a1b..4d4beb0a 100644 --- a/lib/chibi/trace.scm +++ b/lib/chibi/trace.scm @@ -34,7 +34,7 @@ (show-trace-result cell args res) res)))) -;;> Write a trace of all calls to the procedure \var{proc} to +;;> Write a trace of all calls to the procedure \var{id} to ;;> \scheme{(current-error-port)}. (define-syntax trace @@ -42,7 +42,7 @@ ((trace id) (trace-cell (env-cell (interaction-environment) 'id))))) -;;> Remove any active traces on the procedure \var{proc}. +;;> Remove any active traces on the procedure \var{id}. (define-syntax untrace (syntax-rules ()