From 48141dadc553439c76c8682c3249b82f81da1959 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 25 Apr 2018 23:18:24 -0700 Subject: [PATCH] Fix missed reference. --- src/runtime/hash-table.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/hash-table.scm b/src/runtime/hash-table.scm index 482f41a00..caa07094e 100644 --- a/src/runtime/hash-table.scm +++ b/src/runtime/hash-table.scm @@ -164,7 +164,7 @@ USA. ((table-type-method:put! (table-type table)) table key datum)) (define (hash-table-update! table key procedure #!optional get-default) - (guarantee hash-table? table 'hash-table/modify!) + (guarantee hash-table? table 'hash-table-update!) ((table-type-method:modify! (table-type table)) table key -- 2.25.1