Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions main.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -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?)]))

Expand Down Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion test/private/rackunit.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -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)))))

Expand Down
Loading