diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2015-02-14 00:05:29 +1100 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2015-02-14 00:05:29 +1100 |
commit | bc0ec7a0e8fb1fed2fe7a2aeb67433dc497f08d0 (patch) | |
tree | 2057044e85051577e3949acde9a6c05fad976341 /cocoa | |
parent | 4380af4be05f0518f2a25975cb16b5943320a426 (diff) | |
download | scintilla-mirror-bc0ec7a0e8fb1fed2fe7a2aeb67433dc497f08d0.tar.gz |
Fix doc comments.
Diffstat (limited to 'cocoa')
-rw-r--r-- | cocoa/InfoBar.mm | 2 | ||||
-rw-r--r-- | cocoa/PlatCocoa.mm | 2 | ||||
-rw-r--r-- | cocoa/ScintillaView.mm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cocoa/InfoBar.mm b/cocoa/InfoBar.mm index a4bc52731..3ea0fce5d 100644 --- a/cocoa/InfoBar.mm +++ b/cocoa/InfoBar.mm @@ -108,7 +108,7 @@ * @param type The type of the notification. * @param message Carries the new status message if the type is a status message change. * @param location Carries the new location (e.g. caret) if the type is a caret change or similar type. - * @param location Carries the new zoom value if the type is a zoom change. + * @param value Carries the new zoom value if the type is a zoom change. */ - (void) notify: (NotificationType) type message: (NSString*) message location: (NSPoint) location value: (float) value diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm index facd18c34..77dfc83e2 100644 --- a/cocoa/PlatCocoa.mm +++ b/cocoa/PlatCocoa.mm @@ -2031,7 +2031,7 @@ int Platform::DefaultFontSize() * Returns the time span in which two consecutive mouse clicks must occur to be considered as * double click. * - * @return + * @return time span in milliseconds */ unsigned int Platform::DoubleClickTime() { diff --git a/cocoa/ScintillaView.mm b/cocoa/ScintillaView.mm index 02847acc8..dbb87a82b 100644 --- a/cocoa/ScintillaView.mm +++ b/cocoa/ScintillaView.mm @@ -954,7 +954,7 @@ static NSCursor *cursorFromEnum(Window::Cursor cursor) * @param type The type of the notification. * @param message Carries the new status message if the type is a status message change. * @param location Carries the new location (e.g. caret) if the type is a caret change or similar type. - * @param location Carries the new zoom value if the type is a zoom change. + * @param value Carries the new zoom value if the type is a zoom change. */ - (void) notify: (NotificationType) type message: (NSString*) message location: (NSPoint) location value: (float) value |