summaryrefslogtreecommitdiff
path: root/doc/developer.texi
diff options
context:
space:
mode:
authorGanesh Ajjanagadde <gajjanagadde@gmail.com>2015-10-08 09:01:38 -0400
committerStefano Sabatini <stefasab@gmail.com>2015-10-10 15:52:15 +0200
commit0281ef907519ee395d53d523022100f2634672b3 (patch)
treeb42a966f8e9da8967af34f66b3a829117e1db6dc /doc/developer.texi
parent8881b035d97a5065a648cda34226b3c691e9c4e5 (diff)
doc/developer: minor typo and consistency fixes
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Diffstat (limited to 'doc/developer.texi')
-rw-r--r--doc/developer.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/developer.texi b/doc/developer.texi
index dee0e1c290..cad1c29734 100644
--- a/doc/developer.texi
+++ b/doc/developer.texi
@@ -124,10 +124,10 @@ the @samp{inline} keyword;
@samp{//} comments;
@item
-designated struct initializers (@samp{struct s x = @{ .i = 17 @};})
+designated struct initializers (@samp{struct s x = @{ .i = 17 @};});
@item
-compound literals (@samp{x = (struct s) @{ 17, 23 @};})
+compound literals (@samp{x = (struct s) @{ 17, 23 @};}).
@end itemize
These features are supported by all compilers we care about, so we will not
@@ -156,7 +156,7 @@ GCC statement expressions (@samp{(x = (@{ int y = 4; y; @})}).
All names should be composed with underscores (_), not CamelCase. For example,
@samp{avfilter_get_video_buffer} is an acceptable function name and
@samp{AVFilterGetVideo} is not. The exception from this are type names, like
-for example structs and enums; they should always be in the CamelCase
+for example structs and enums; they should always be in CamelCase.
There are the following conventions for naming variables and functions: