networks: eval-with → eval1-with

This makes the type checker happy because it's more precise to use
eval1-with.
This commit is contained in:
Sergiu Ivanov 2022-01-16 23:15:33 +01:00
parent 556a4ae8bf
commit 75560658a0

View file

@ -275,7 +275,7 @@
;;; Build an update function from an update function form.
(define (update-function-form->update-function form)
(λ (s) (eval-with s form)))
(λ (s) (eval1-with s form)))
(module+ test
(test-case "update-function-form->update-function"