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>2019-05-02 11:25:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-02 11:25:36 +0300
commit5b14b5654231a50874fd9103d2adb306f62aec8d (patch)
treef2c0c65e5b30bd62fd7369c9704417f15fbc37c5
parent22c293f6d606664ed459200905b9d87a772ec986 (diff)
Cleanup: typos in comments
-rw-r--r--source/blender/compositor/intern/COM_NodeGraph.cpp2
-rw-r--r--source/blender/editors/space_view3d/view3d_select.c2
-rw-r--r--source/blender/freestyle/intern/view_map/ViewMap.h5
-rw-r--r--source/blender/makesdna/DNA_scene_types.h2
-rw-r--r--source/blender/makesdna/DNA_smoke_types.h8
5 files changed, 10 insertions, 9 deletions
diff --git a/source/blender/compositor/intern/COM_NodeGraph.cpp b/source/blender/compositor/intern/COM_NodeGraph.cpp
index 4104886bc1b..b4d6cc0ff60 100644
--- a/source/blender/compositor/intern/COM_NodeGraph.cpp
+++ b/source/blender/compositor/intern/COM_NodeGraph.cpp
@@ -304,7 +304,7 @@ void NodeGraph::add_proxies_group(const CompositorContext &context,
/* missing node group datablock can happen with library linking */
if (!b_group_tree) {
/* This error case its handled in convertToOperations()
- * so we don't get un-convertred sockets. */
+ * so we don't get un-converted sockets. */
return;
}
diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c
index 0e1b9d74268..2ce23486476 100644
--- a/source/blender/editors/space_view3d/view3d_select.c
+++ b/source/blender/editors/space_view3d/view3d_select.c
@@ -2211,7 +2211,7 @@ static int view3d_select_exec(bContext *C, wmOperator *op)
}
}
- /* passthrough allows tweaks
+ /* Pass-through allows tweaks
* FINISHED to signal one operator worked
* */
if (retval) {
diff --git a/source/blender/freestyle/intern/view_map/ViewMap.h b/source/blender/freestyle/intern/view_map/ViewMap.h
index 011090d8e67..9b1eab0d905 100644
--- a/source/blender/freestyle/intern/view_map/ViewMap.h
+++ b/source/blender/freestyle/intern/view_map/ViewMap.h
@@ -1367,8 +1367,9 @@ class ViewEdge : public Interface1D {
virtual Interface0DIterator verticesEnd();
/*! Returns an Interface0DIterator to iterate over the points of this ViewEdge at a given
- * resolution. The returned Interface0DIterator points on the first Point of the ViewEdge. \param
- * t: the sampling value.
+ * resolution. The returned Interface0DIterator points on the first Point of the ViewEdge.
+ * \param t:
+ * the sampling value.
*/
virtual Interface0DIterator pointsBegin(float t = 0.0f);
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 79143ba8fb7..baa9b3ed5c3 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -1474,7 +1474,7 @@ typedef struct ToolSettings {
/** Lock marker editing. */
char lock_markers;
- /**aUto normalizing mode in wpain.t*/
+ /** Auto normalizing mode in wpaint. */
char auto_normalize;
/** Paint multiple bones in wpaint. */
char multipaint;
diff --git a/source/blender/makesdna/DNA_smoke_types.h b/source/blender/makesdna/DNA_smoke_types.h
index 641a1fbf8e3..d795800df2f 100644
--- a/source/blender/makesdna/DNA_smoke_types.h
+++ b/source/blender/makesdna/DNA_smoke_types.h
@@ -276,13 +276,13 @@ typedef struct SmokeDomainSettings {
/* flags */
enum {
- /**old style emission*/
+ /** Old style emission. */
MOD_SMOKE_FLOW_ABSOLUTE = (1 << 1),
- /** passes particles speed to the smoke */
+ /** Passes particles speed to the smoke. */
MOD_SMOKE_FLOW_INITVELOCITY = (1 << 2),
- /** use texture to control emission speed */
+ /** Use texture to control emission speed. */
MOD_SMOKE_FLOW_TEXTUREEMIT = (1 << 3),
- /** use specific size for particles instead of closest cell */
+ /** Use specific size for particles instead of closest cell. */
MOD_SMOKE_FLOW_USE_PART_SIZE = (1 << 4),
};