From 209436071f8279114f8159887cad34a20aa53689 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 6 Nov 2009 04:17:57 -0600 Subject: [PATCH] memory: fix help lint --- core/memory/memory-docs.factor | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/memory/memory-docs.factor b/core/memory/memory-docs.factor index d1832b41ba..acf187a33a 100644 --- a/core/memory/memory-docs.factor +++ b/core/memory/memory-docs.factor @@ -9,13 +9,13 @@ HELP: instances HELP: gc ( -- ) { $description "Performs a full garbage collection." } ; -HELP: data-room ( -- cards decks generations ) -{ $values { "cards" "number of kilobytes reserved for card marking" } { "decks" "number of kilobytes reserved for decks of cards" } { "generations" "array of free/total kilobytes pairs" } } -{ $description "Queries the runtime for memory usage information." } ; +HELP: data-room ( -- data-room ) +{ $values { "data-room" data-room } } +{ $description "Queries the VM for memory usage information." } ; -HELP: code-room ( -- code-total code-used code-free largest-free-block ) -{ $values { "code-total" "total kilobytes in the code heap" } { "code-used" "kilobytes used in the code heap" } { "code-free" "kilobytes free in the code heap" } { "largest-free-block" "size of largest free block" } } -{ $description "Queries the runtime for memory usage information." } ; +HELP: code-room ( -- code-room ) +{ $values { "code-room" code-room } } +{ $description "Queries the VM for memory usage information." } ; HELP: size ( obj -- n ) { $values { "obj" "an object" } { "n" "a size in bytes" } }