Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2016-01-24 06:25:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-24 06:29:14 +0300
commit2ca34e419e9ed82f2065433d41b7544f17b18ce2 (patch)
treecbd345523cb8c939347e6579d6c1783b9aae73bc /source/creator
parent203d2c5029dcc654ad4ffee998cee68aa5cb69f1 (diff)
Docs: minor edits to code comments
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 797db2dfda1..01aff855713 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -1785,11 +1785,11 @@ char **environ = NULL;
#endif
/**
- * Blender's main function responsabilities are:
+ * Blender's main function responsibilities are:
* - setup subsystems.
* - handle arguments.
- * - run WM_main() event loop,
- * or exit when running in background mode.
+ * - run #WM_main() event loop,
+ * or exit immediately when running in background mode.
*/
int main(
int argc,
@@ -2071,7 +2071,7 @@ int main(
#endif
if (G.background) {
- /* actually incorrect, but works for now (ton) */
+ /* Using window-manager API in background mode is a bit odd, but works fine. */
WM_exit(C);
}
else {