From 3ad2a20cada14d1f94de7f674ad68e0836b32858 Mon Sep 17 00:00:00 2001 From: Jack Firth Date: Thu, 9 Jul 2026 00:47:56 -0700 Subject: [PATCH] Fix misspelled resyntax-analyze-for-properties-only export The function was exported as reysntax-analyze-for-properties-only. Co-Authored-By: Claude Fable 5 --- main.rkt | 4 ++-- test/private/rackunit.rkt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.rkt b/main.rkt index dfbd074..7cafb32 100644 --- a/main.rkt +++ b/main.rkt @@ -27,7 +27,7 @@ #:max-modified-lines (or/c exact-nonnegative-integer? +inf.0) #:timeout-ms exact-nonnegative-integer?) resyntax-analysis?)] - [reysntax-analyze-for-properties-only + [resyntax-analyze-for-properties-only (->* (source?) (#:suite refactoring-suite? #:timeout-ms exact-nonnegative-integer?) syntax-property-bundle?)] [refactor! (-> (sequence/c refactoring-result?) void?)])) @@ -233,7 +233,7 @@ [else result-set])) -(define/guard (reysntax-analyze-for-properties-only source +(define/guard (resyntax-analyze-for-properties-only source #:suite [suite default-recommendations] #:timeout-ms [timeout-ms 10000]) (define comments (source-comment-locations source)) diff --git a/test/private/rackunit.rkt b/test/private/rackunit.rkt index 0abe5d3..1a8323a 100644 --- a/test/private/rackunit.rkt +++ b/test/private/rackunit.rkt @@ -270,7 +270,7 @@ (define actual-props (call-with-logs-captured - (λ () (reysntax-analyze-for-properties-only program-src + (λ () (resyntax-analyze-for-properties-only program-src #:suite suite #:timeout-ms (current-analyzer-timeout-millis)))))