Cleanup: typos

This commit is contained in:
Campbell Barton
2018-01-19 15:34:54 +11:00
parent abb3a86e10
commit 7a24e0d175
12 changed files with 19 additions and 19 deletions

View File

@@ -202,7 +202,7 @@ ccl_device_inline float path_state_continuation_probability(KernelGlobals *kg,
#endif
}
/* Probalistic termination: use sqrt() to roughly match typical view
/* Probabilistic termination: use sqrt() to roughly match typical view
* transform and do path termination a bit later on average. */
return min(sqrtf(max3(fabs(throughput)) * state->branch_factor), 1.0f);
}

View File

@@ -20,7 +20,7 @@
CCL_NAMESPACE_BEGIN
/* Pseudo random numbers, uncomment this for debugging correlations. Only run
* this single threaded on a CPU for repeatable resutls. */
* this single threaded on a CPU for repeatable results. */
//#define __DEBUG_CORRELATION__