Cleanup: spelling

This commit is contained in:
Campbell Barton 2021-04-19 23:56:12 +10:00
parent 33440760a6
commit 46a13482cb
4 changed files with 4 additions and 4 deletions

View File

@ -182,7 +182,7 @@ class GeometryComponent {
/**
* Returns an "output attribute", which is essentially a mutable virtual array with some commonly
* used convience features. The returned output attribute might be empty if requested attribute
* used convince features. The returned output attribute might be empty if requested attribute
* cannot exist on the geometry.
*
* The included convenience features are:

View File

@ -232,7 +232,7 @@ class Stack {
{
this->push_as(std::move(value));
}
/* This is similar to std::stack::emblace. */
/* This is similar to `std::stack::emplace`. */
template<typename... ForwardT> void push_as(ForwardT &&... value)
{
if (top_ == top_chunk_->capacity_end) {

View File

@ -443,7 +443,7 @@ class Vector {
{
this->append_as(std::move(value));
}
/* This is similar to std::vector::emblace_back. */
/* This is similar to `std::vector::emplace_back`. */
template<typename... ForwardValue> void append_as(ForwardValue &&... value)
{
this->ensure_space_for_one();

View File

@ -1911,7 +1911,7 @@ typedef struct SpaceSpreadsheet {
/**
* List of #SpreadsheetContext.
* This is a path to the data that is displayed in the spreadsheet.
* It can be set explicitely by an action of the user (e.g. clicking the preview icon in a
* It can be set explicitly by an action of the user (e.g. clicking the preview icon in a
* geometry node) or it can be derived from context automatically based on some heuristic.
*/
ListBase context_path;