Skip to content

Commit

Permalink
Change :- to : in send-mail
Browse files Browse the repository at this point in the history
  • Loading branch information
drewc committed Dec 4, 2023
1 parent 4b3644c commit 32cec0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/std/net/smtp/README.org
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ The easy way to connect and interact with an SMTP server.

#+begin_src scheme :tangle api.ss
(def (send-mail smtp return-path forward-path . data)
(using (smtp :- SMTP)
(using (smtp : SMTP)
(def sredaeh []) ;;(headers interted)
(def body #f) ;; The body
(def body? (? (or string? u8vector? procedure?)))
Expand Down
2 changes: 1 addition & 1 deletion src/std/net/smtp/api.ss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(export #t (import: ./interface ./session ./connection ./headers ./data))

(def (send-mail smtp return-path forward-path . data)
(using (smtp :- SMTP)
(using (smtp : SMTP)
(def sredaeh []) ;;(headers interted)
(def body #f) ;; The body
(def body? (? (or string? u8vector? procedure?)))
Expand Down

0 comments on commit 32cec0e

Please sign in to comment.