aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2016-02-11 15:49:20 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2016-02-11 16:05:45 +0100
commitbc67058d3934ccdbf636571a6f8838ab83ac7af2 (patch)
treea10fefdaaec0a59a5db0e222084e0555b342e79f /src
parent14a45eb6e95e89ccfeb2e72a468fc87c067d7ad9 (diff)
downloadsciteco-bc67058d3934ccdbf636571a6f8838ab83ac7af2.tar.gz
minor Doxygen comment fixes
Diffstat (limited to 'src')
-rw-r--r--src/ioview.cpp4
-rw-r--r--src/sciteco.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ioview.cpp b/src/ioview.cpp
index cc0e8fc..1643a29 100644
--- a/src/ioview.cpp
+++ b/src/ioview.cpp
@@ -111,8 +111,8 @@ set_file_attributes(const gchar *filename, FileAttributes attrs)
* @param eol_style Will be set to the EOL style guessed from
* the data in channel (if the data allows it).
* Should be initialized with -1 (unknown).
- * @param eol_style_consistent Will be set to TRUE if
- * inconsistent EOL styles are detected.
+ * @param eol_style_inconsistent Will be set to TRUE if
+ * inconsistent EOL styles are detected.
* @param error If not NULL and an error occurred, it is set to
* the error. It should be initialized to -1.
* @return A GIOStatus as returned by g_io_channel_read_chars()
diff --git a/src/sciteco.h b/src/sciteco.h
index 155cbc7..1163020 100644
--- a/src/sciteco.h
+++ b/src/sciteco.h
@@ -62,7 +62,7 @@ extern sig_atomic_t sigint_occurred;
#define CTL_ECHO(C) ((C) | 0x40)
/**
* Control character of ASCII C, i.e.
- * control character corresponding to CTRL+<C> keypress.
+ * control character corresponding to CTRL+C keypress.
*/
#define CTL_KEY(C) ((C) & ~0x40)
/**