mirror of
https://github.com/google/styleguide.git
synced 2024-03-22 13:11:43 +08:00
space comments correctly on code example
This commit is contained in:
parent
a7dd19342d
commit
b87a3025fc
|
@ -746,15 +746,15 @@
|
||||||
<CODE_SNIPPET>
|
<CODE_SNIPPET>
|
||||||
@interface MyDelegate : NSObject {
|
@interface MyDelegate : NSObject {
|
||||||
@private
|
@private
|
||||||
IBOutlet* okButton_; // normal NSControl
|
IBOutlet NSButton* okButton_; // normal NSControl
|
||||||
IBOutlet* myContextMenu_; // manually-loaded menu (strong)
|
IBOutlet NSMenu* myContextMenu_; // manually-loaded menu (strong)
|
||||||
|
|
||||||
AnObjcObject* doohickey_; // my doohickey
|
AnObjcObject* doohickey_; // my doohickey
|
||||||
MyController* controller_; // so we can send msgs back (weak, owns me)
|
MyController* controller_; // so we can send msgs back (weak, owns me)
|
||||||
|
|
||||||
// non-NSObject pointers...
|
// non-NSObject pointers...
|
||||||
CWackyCPPClass* wacky_; // some cross-platform object (strong)
|
CWackyCPPClass* wacky_; // some cross-platform object (strong)
|
||||||
CFDictionaryRef* dict_; // (strong)
|
CFDictionaryRef* dict_; // (strong)
|
||||||
}
|
}
|
||||||
@end
|
@end
|
||||||
</CODE_SNIPPET>
|
</CODE_SNIPPET>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user