File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ Lwt API.
108
108
109
109
### Creating and Authenticating a Session
110
110
111
- # let s = create_session ~host:"imap.gmail.com" ~username:"myuser" ~password:"mysecret";;
111
+ # let s = create_session ~host:"imap.gmail.com" ~username:"myuser" ~password:"mysecret" () ;;
112
112
val s : session = <abstr>
113
113
114
114
Note that you never need to connect or authenticate explicitly. It is all
@@ -204,7 +204,7 @@ allow to modify the flags of a message.
204
204
205
205
To see a debug trace of everything that gets sent and received, set the Lwt log level to ` Debug ` .
206
206
207
- # Lwt_log.Section.set_level Lwt_log.Sectin .main Lwt_log.Debug;;
207
+ # Lwt_log.Section.set_level Lwt_log.Section .main Lwt_log.Debug;;
208
208
209
209
** NOTE** : This will print your username and password on the terminal.
210
210
You can’t perform that action at this time.
0 commit comments