Cleanup: spelling

This commit is contained in:
2019-12-20 10:45:45 +11:00
parent 9a9f39e466
commit 334ddce17c
3 changed files with 10 additions and 6 deletions

View File

@@ -4334,8 +4334,8 @@ void BKE_fluid_flow_behavior_set(Object *UNUSED(object), FluidFlowSettings *sett
void BKE_fluid_flow_type_set(Object *object, FluidFlowSettings *settings, int type)
{
/* By default, liquid flow objects should behave like their geometry (geomtery behavior),
* gas flow objects should continously produce smoke (inflow behavior). */
/* By default, liquid flow objects should behave like their geometry (geometry behavior),
* gas flow objects should continuously produce smoke (inflow behavior). */
if (type == FLUID_FLOW_TYPE_LIQUID) {
BKE_fluid_flow_behavior_set(object, settings, FLUID_FLOW_BEHAVIOR_GEOMETRY);
}

View File

@@ -5502,8 +5502,10 @@ static void modifier_ensure_type(FluidModifierData *fluid_modifier_data, int typ
BKE_fluid_modifier_create_type_data(fluid_modifier_data);
}
/* NOTE: The old_modifier_data is NOT linked. This means that in ordet to access subdata
* pointers newdataadr is to be used. */
/**
* \note The old_modifier_data is NOT linked.
* This means that in order to access sub-data pointers #newdataadr is to be used.
*/
static ModifierData *modifier_replace_with_fluid(FileData *fd,
Object *object,
ListBase *modifiers,

View File

@@ -561,8 +561,10 @@ static void gather_frames_to_render_for_adt(OGLRender *oglrender,
}
}
/* Collect the frame numbers for which selected objects have keys in the animation data.
* The frames ares tored in oglrender->render_frames. */
/**
* Collect the frame numbers for which selected objects have keys in the animation data.
* The frames ares stored in #OGLRender.render_frames.
*/
static void gather_frames_to_render(bContext *C, OGLRender *oglrender)
{
Scene *scene = CTX_data_scene(C);