Skip to content

Commit b9ef913

Browse files
committed
Fixed spelling errors in headers
1 parent 318e436 commit b9ef913

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

include/vsg/app/CompileManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ namespace vsg
8383
/// compile all the command graphs in a task
8484
CompileResult compileTask(ref_ptr<RecordAndSubmitTask> task, const ResourceRequirements& resourceRequirements = {});
8585

86-
/// mechinism for releasing and reusing used resources
86+
/// mechanism for releasing and reusing used resources
8787
ref_ptr<ResourceScavenger> resourceScavenger;
8888

8989
std::atomic_uint successfulCompileCount{0};

include/vsg/core/type_name.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ namespace vsg
4949
template<> constexpr const char* vsg::type_name<T>() noexcept { return #T; } \
5050
template<> constexpr const char* vsg::type_name<const T>() noexcept { return "const "#T; }
5151

52-
/// convinience function for adding a space in front of the type_name string.
52+
/// convenience function for adding a space in front of the type_name string.
5353
template<typename T>
5454
std::string space_type_name(const T&) { return std::string(" ") + type_name<T>(); }
5555

include/vsg/nodes/InstanceNode.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ namespace vsg
2121
{
2222

2323
/// InstanceNode provides a mechanism for specifying the translations, rotations and scales (transform arrays) of subgraph
24-
/// that contains InstanceDraw leaf node(s) that utlize the InstanceNode's per instance transform arrays combined with the
24+
/// that contains InstanceDraw leaf node(s) that utilize the InstanceNode's per instance transform arrays combined with the
2525
/// InstanceDraw nodes per vertex arrays.
2626
///
27-
/// InstanceNode only work correctly when the child subgraphs that obey these contraints:
27+
/// InstanceNode only work correctly when the child subgraphs that obey these constraints:
2828
/// 1. Do not contain any Transform nodes
2929
/// 2. Do not contain any Culling nodes
3030
/// 3. Do not contain any InstanceNode nodes

0 commit comments

Comments
 (0)