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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-03-21 05:18:20 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-21 05:18:20 +0300
commit6db1fb197c169633bef9b23542464f89e9c4dbe6 (patch)
tree1b8706cb2e5962b02d0034cfc470a88018a386db /intern
parentb4e96550ce595a3f3c50a251033b41c2c117260a (diff)
Cleanup: spelling, doxygen comment formatting
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/render/alembic.h4
-rw-r--r--intern/ghost/intern/GHOST_DropTargetWin32.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/intern/cycles/render/alembic.h b/intern/cycles/render/alembic.h
index 0fc02f1da23..0203475571e 100644
--- a/intern/cycles/render/alembic.h
+++ b/intern/cycles/render/alembic.h
@@ -43,14 +43,14 @@ struct MatrixSamplesData {
Alembic::AbcCoreAbstract::TimeSamplingPtr time_sampling;
};
-/* Helpers to detect if some type is a ccl::array. */
+/* Helpers to detect if some type is a `ccl::array`. */
template<typename> struct is_array : public std::false_type {
};
template<typename T> struct is_array<array<T>> : public std::true_type {
};
-/* Holds the data for a cache lookup at a given time, as well as informations to
+/* Holds the data for a cache lookup at a given time, as well as information to
* help disambiguate successes or failures to get data from the cache. */
template<typename T> class CacheLookupResult {
enum class State {
diff --git a/intern/ghost/intern/GHOST_DropTargetWin32.cpp b/intern/ghost/intern/GHOST_DropTargetWin32.cpp
index fe11d9a28f2..ab4b48da9b4 100644
--- a/intern/ghost/intern/GHOST_DropTargetWin32.cpp
+++ b/intern/ghost/intern/GHOST_DropTargetWin32.cpp
@@ -178,8 +178,8 @@ DWORD GHOST_DropTargetWin32::allowedDropEffect(DWORD dwAllowed)
GHOST_TDragnDropTypes GHOST_DropTargetWin32::getGhostType(IDataObject *pDataObject)
{
/* Text
- * Note: Unicode text is available as CF_TEXT too, the system can do the
- * conversion, but we do the conversion ourself with WC_NO_BEST_FIT_CHARS.
+ * NOTE: Unicode text is available as CF_TEXT too, the system can do the
+ * conversion, but we do the conversion our self with #WC_NO_BEST_FIT_CHARS.
*/
FORMATETC fmtetc = {CF_TEXT, 0, DVASPECT_CONTENT, -1, TYMED_HGLOBAL};
if (pDataObject->QueryGetData(&fmtetc) == S_OK) {