summaryrefslogtreecommitdiff
path: root/include/freetype/tttables.h
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2018-08-06 10:24:08 +0200
committerWerner Lemberg <wl@gnu.org>2018-08-06 10:24:08 +0200
commit86e7385342b11ac6a2a179a80585d629e97f2a1f (patch)
treef271ba9bea044e26980b5f9d8220c95102269804 /include/freetype/tttables.h
parent720ae67f35701819f6bf3fd9337dc89079a4ed27 (diff)
downloadfreetype2-86e7385342b11ac6a2a179a80585d629e97f2a1f.tar.gz
Minor comment formatting.
Diffstat (limited to 'include/freetype/tttables.h')
-rw-r--r--include/freetype/tttables.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/freetype/tttables.h b/include/freetype/tttables.h
index c23d3c69b..8ecc8e274 100644
--- a/include/freetype/tttables.h
+++ b/include/freetype/tttables.h
@@ -779,19 +779,19 @@ FT_BEGIN_HEADER
* If you need to determine the table's length you should first call this
* function with `*length' set to~0, as in the following example:
*
- * {
- * FT_ULong length = 0;
+ * {
+ * FT_ULong length = 0;
*
*
- * error = FT_Load_Sfnt_Table( face, tag, 0, NULL, &length );
- * if ( error ) { ... table does not exist ... }
+ * error = FT_Load_Sfnt_Table( face, tag, 0, NULL, &length );
+ * if ( error ) { ... table does not exist ... }
*
- * buffer = malloc( length );
- * if ( buffer == NULL ) { ... not enough memory ... }
+ * buffer = malloc( length );
+ * if ( buffer == NULL ) { ... not enough memory ... }
*
- * error = FT_Load_Sfnt_Table( face, tag, 0, buffer, &length );
- * if ( error ) { ... could not load table ... }
- * }
+ * error = FT_Load_Sfnt_Table( face, tag, 0, buffer, &length );
+ * if ( error ) { ... could not load table ... }
+ * }
*
* Note that structures like @TT_Header or @TT_OS2 can't be used with
* this function; they are limited to @FT_Get_Sfnt_Table. Reason is that