Skip to content

Commit 3ad2a20

Browse files
jackfirthclaude
andcommitted
Fix misspelled resyntax-analyze-for-properties-only export
The function was exported as reysntax-analyze-for-properties-only. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent cf9db51 commit 3ad2a20

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

main.rkt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#:max-modified-lines (or/c exact-nonnegative-integer? +inf.0)
2828
#:timeout-ms exact-nonnegative-integer?)
2929
resyntax-analysis?)]
30-
[reysntax-analyze-for-properties-only
30+
[resyntax-analyze-for-properties-only
3131
(->* (source?) (#:suite refactoring-suite? #:timeout-ms exact-nonnegative-integer?) syntax-property-bundle?)]
3232
[refactor! (-> (sequence/c refactoring-result?) void?)]))
3333

@@ -233,7 +233,7 @@
233233
[else result-set]))
234234

235235

236-
(define/guard (reysntax-analyze-for-properties-only source
236+
(define/guard (resyntax-analyze-for-properties-only source
237237
#:suite [suite default-recommendations]
238238
#:timeout-ms [timeout-ms 10000])
239239
(define comments (source-comment-locations source))

test/private/rackunit.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270

271271
(define actual-props
272272
(call-with-logs-captured
273-
(λ () (reysntax-analyze-for-properties-only program-src
273+
(λ () (resyntax-analyze-for-properties-only program-src
274274
#:suite suite
275275
#:timeout-ms (current-analyzer-timeout-millis)))))
276276

0 commit comments

Comments
 (0)