Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix formatting of #'router docstring #659

Merged
merged 1 commit into from
Apr 19, 2024

Conversation

frenchy64
Copy link
Contributor

Escaped double quotes breaks the clojure.repl/doc output.

Before:

      (router
        ["/api" {:middleware [wrap-format wrap-oauth2]}
          ["/users" {:get get-user
                       :post update-user
                       :delete {:middleware [wrap-delete]
                               :handler delete-user}}]])

After:

      (router
        ["/api" {:middleware [wrap-format wrap-oauth2]}
         ["/users" {:get get-user
                    :post update-user
                    :delete {:middleware [wrap-delete]
                             :handler delete-user}}]])

Escaped double quotes breaks the clojure.repl/doc output.
@opqdonut opqdonut merged commit b6c5b69 into metosin:master Apr 19, 2024
3 of 6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants