From 42281449c55c951c4f5b7c7f517f4999c7c5ee25 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Thu, 15 Jun 2017 22:31:20 -0700 Subject: [PATCH] nit --- pitfall/fontkit/ttfglyph.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pitfall/fontkit/ttfglyph.rkt b/pitfall/fontkit/ttfglyph.rkt index fbd0e050..6a1d798f 100644 --- a/pitfall/fontkit/ttfglyph.rkt +++ b/pitfall/fontkit/ttfglyph.rkt @@ -86,10 +86,10 @@ (define/public (_decodeSimple glyph stream) (unless (RGlyfHeader? glyph) - (raise-argument-error 'TTFGlyph-_decodeSimple "glyph" glyph)) + (raise-argument-error 'TTFGlyph-_decodeSimple "RGlyfHeader" glyph)) (unless (DecodeStream? stream) - (raise-argument-error 'TTFGlyph-_decodeSimple "stream" stream)) + (raise-argument-error 'TTFGlyph-_decodeSimple "DecodeStream" stream)) ;; this is a simple glyph (hash-set! glyph 'points empty)