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>
|
||||
@interface MyDelegate : NSObject {
|
||||
@private
|
||||
IBOutlet* okButton_; // normal NSControl
|
||||
IBOutlet* myContextMenu_; // manually-loaded menu (strong)
|
||||
IBOutlet NSButton* okButton_; // normal NSControl
|
||||
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)
|
||||
|
||||
// non-NSObject pointers...
|
||||
CWackyCPPClass* wacky_; // some cross-platform object (strong)
|
||||
CFDictionaryRef* dict_; // (strong)
|
||||
CWackyCPPClass* wacky_; // some cross-platform object (strong)
|
||||
CFDictionaryRef* dict_; // (strong)
|
||||
}
|
||||
@end
|
||||
</CODE_SNIPPET>
|
||||
|
|
Loading…
Reference in New Issue
Block a user