aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/highlight.h
diff options
context:
space:
mode:
authorGravatar Aaron Gyes <me@aaron.gy>2016-06-05 18:46:04 -0700
committerGravatar Aaron Gyes <me@aaron.gy>2016-06-05 18:57:45 -0700
commit1357f5a3647aba1024afe8557695c1a07a81b129 (patch)
treea00b6abc3342711725e1cf1850550eebd157733b /src/highlight.h
parent32a585a52b20687a1a16c45142da2261d28b7a27 (diff)
Repair various invalid HeaderDoc comments.
Enable build setting to allow Xcode to complain about invalid comments.
Diffstat (limited to 'src/highlight.h')
-rw-r--r--src/highlight.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/highlight.h b/src/highlight.h
index fa62010a..c503e97a 100644
--- a/src/highlight.h
+++ b/src/highlight.h
@@ -69,7 +69,7 @@ struct file_detection_context_t;
/// Perform syntax highlighting for the shell commands in buff. The result is stored in the color
/// array as a color_code from the HIGHLIGHT_ enum for each character in buff.
///
-/// \param buff The buffer on which to perform syntax highlighting
+/// \param buffstr The buffer on which to perform syntax highlighting
/// \param color The array in wchich to store the color codes. The first 8 bits are used for fg
/// color, the next 8 bits for bg color.
/// \param pos the cursor position. Used for quote matching, etc.
@@ -87,7 +87,7 @@ void highlight_shell_no_io(const wcstring &buffstr, std::vector<highlight_spec_t
/// highlighted. The result is stored in the color array as a color_code from the HIGHLIGHT_ enum
/// for each character in buff.
///
-/// \param buff The buffer on which to perform syntax highlighting
+/// \param buffstr The buffer on which to perform syntax highlighting
/// \param color The array in wchich to store the color codes. The first 8 bits are used for fg
/// color, the next 8 bits for bg color.
/// \param pos the cursor position. Used for quote matching, etc.