aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--cocoa/InfoBar.mm2
-rw-r--r--cocoa/PlatCocoa.mm2
-rw-r--r--cocoa/ScintillaView.mm2
-rw-r--r--src/RESearch.cxx4
4 files changed, 5 insertions, 5 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
diff --git a/src/RESearch.cxx b/src/RESearch.cxx
index dbf1423e7..2824a5b70 100644
--- a/src/RESearch.cxx
+++ b/src/RESearch.cxx
@@ -342,8 +342,8 @@ static int GetHexaChar(unsigned char hd1, unsigned char hd2) {
/**
* Called when the parser finds a backslash not followed
* by a valid expression (like \( in non-Posix mode).
- * @param pattern: pointer on the char after the backslash.
- * @param incr: (out) number of chars to skip after expression evaluation.
+ * @param pattern : pointer on the char after the backslash.
+ * @param incr : (out) number of chars to skip after expression evaluation.
* @return the char if it resolves to a simple char,
* or -1 for a char class. In this case, bittab is changed.
*/