Cleanup: typos in comments

This commit is contained in:
Campbell Barton
2019-05-02 18:25:13 +10:00
parent 22c293f6d6
commit 5b14b56542
5 changed files with 10 additions and 9 deletions

View File

@@ -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;
}

View File

@@ -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) {

View File

@@ -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);

View File

@@ -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;

View File

@@ -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),
};