aboutsummaryrefslogtreecommitdiffstats
path: root/src/gfile/sys_defs.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-09-28 23:42:53 +0200
committerJoel Bodenmann <joel@unormal.org>2014-09-28 23:42:53 +0200
commit0253b7df4967b3fee54d9d9a1e588e6da8cd687d (patch)
tree2b54acc57c2dcef1cfc6daa12e9142fc5b156d90 /src/gfile/sys_defs.h
parent8d7bbe7e45e47e24074676ca996c0b744b14c959 (diff)
downloaduGFX-0253b7df4967b3fee54d9d9a1e588e6da8cd687d.tar.gz
uGFX-0253b7df4967b3fee54d9d9a1e588e6da8cd687d.tar.bz2
uGFX-0253b7df4967b3fee54d9d9a1e588e6da8cd687d.zip
some more doxygen fixes
Diffstat (limited to 'src/gfile/sys_defs.h')
-rw-r--r--src/gfile/sys_defs.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gfile/sys_defs.h b/src/gfile/sys_defs.h
index 5a2d9845..2c475b40 100644
--- a/src/gfile/sys_defs.h
+++ b/src/gfile/sys_defs.h
@@ -103,21 +103,21 @@ extern "C" {
* @return Valid GFILE on success, 0 otherwise
*
* @note The modes follow the c library fopen() standard.
- * The valid modes are:<br/>
+ * The valid modes are:
* <ul><li>r - Open for read, the file must exist</li>
* <li>w - Open for write, the file is truncated if it exists</li>
* <li>wx - Open for write, the file must not exist</li>
* <li>a - Open for append, the file is truncated if it exists</li>
* <li>ax - Open for append, the file must not exists</li>
- * </ul><br/>
- * THe following flags can also be added to the above modes:<br/>
+ * </ul>
+ * The following flags can also be added to the above modes:<br/>
* <ul><li>+ - Open for both read and write</li>
* <li>b - Open as a binary file rather than a text file</li>
- * <ul>
+ * </ul>
* @note Not all file-systems support all modes. For example, write
* is not available with the ROM file-system. Similarly few platforms
* distinguish between binary and text files.
- * @note Even though binary vs text is relevant only for a small number of platforms
+ * @note Even though binary vs. text is relevant only for a small number of platforms
* the "b" flag should always be specified for binary files such as images.
* This ensures portability to other platforms. The extra flag will be ignored
* on platforms where it is not relevant.
@@ -346,8 +346,8 @@ extern "C" {
/**
* @brief Open file from a null terminated C string
*
- * @param[in] memptr The pointer to the string or string buffer
- * @param[in] mode The mode.
+ * @param[in] str The pointer to the string or string buffer
+ * @param[in] mode The mode
*
* @return Valid GFILE on success, 0 otherwise
*