aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/smtp
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-04-06 22:01:10 -0700
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-04-06 22:01:10 -0700
commit481cfb711b34189b1bf554f3cf2c88b9d7334795 (patch)
treeda6b6d9abeeff900b2c10954681dcbed64ee58b8 /src/objc/smtp
parentabc2b119c709a3fcea92ea1750f208b2bf47c9d5 (diff)
IMAP Objective-C API documentation completed.
Diffstat (limited to 'src/objc/smtp')
-rw-r--r--src/objc/smtp/MCOSMTPSession.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/objc/smtp/MCOSMTPSession.h b/src/objc/smtp/MCOSMTPSession.h
index 3b29ddf7..e0645eb1 100644
--- a/src/objc/smtp/MCOSMTPSession.h
+++ b/src/objc/smtp/MCOSMTPSession.h
@@ -62,10 +62,10 @@
// {
// ...
// // Generate RFC 822 data using MCOMessageBuilder
-// MCOPOPOperation * op [session sendOperationWithData:rfc822Data];
-// [op start:^(NSError *error) {
+// MCOPOPOperation * op = [session sendOperationWithData:rfc822Data];
+// [op start:^(NSError * error) {
// ...
-// }]];
+// }];
//
- (MCOSMTPSendOperation *) sendOperationWithData:(NSData *)messageData;
@@ -74,10 +74,10 @@
//
// {
// ...
-// MCOPOPOperation * op [session checkAccountOperationWithFrom:[MCOAddress addressWithMailbox:@"hoa@etpan.org"]];
-// [op start:^(NSError *error) {
+// MCOPOPOperation * op = [session checkAccountOperationWithFrom:[MCOAddress addressWithMailbox:@"hoa@etpan.org"]];
+// [op start:^(NSError * error) {
// ...
-// }]];
+// }];
//
- (MCOSMTPOperation *) checkAccountOperationWithFrom:(MCOAddress *)from;