diff --git a/beautiful-racket-demo/jsonic-demo-2/colorer.rkt b/beautiful-racket-demo/jsonic-demo-2/colorer.rkt index fcaa1ee..70ad1fa 100644 --- a/beautiful-racket-demo/jsonic-demo-2/colorer.rkt +++ b/beautiful-racket-demo/jsonic-demo-2/colorer.rkt @@ -1,5 +1,6 @@ #lang br -(require brag/support syntax-color/racket-lexer racket/contract) +(require brag/support syntax-color/racket-lexer + racket/contract) (define jsonic-lexer (lexer diff --git a/beautiful-racket-demo/jsonic-demo-2/indenter.rkt b/beautiful-racket-demo/jsonic-demo-2/indenter.rkt index 7c2b5ac..54c4f52 100644 --- a/beautiful-racket-demo/jsonic-demo-2/indenter.rkt +++ b/beautiful-racket-demo/jsonic-demo-2/indenter.rkt @@ -18,7 +18,8 @@ (line-first-visible-char tbox current-line)) (- prev-indent indent-width)] [else prev-indent])) - (and (exact-positive-integer? current-indent) current-indent)) + (and (exact-positive-integer? current-indent) + current-indent)) (provide (contract-out [indent-jsonic (((is-a?/c text%))