Skip to content

Commit b09deb2

Browse files
jrpriceDawn LUCI CQ
authored andcommitted
[tint] Fix comment typos
Follow up from a previous CL. No-Try: true Change-Id: I77a036810d6dbcfd32b3f91ad4225eba4b998225 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/212494 Reviewed-by: dan sinclair <[email protected]> Commit-Queue: James Price <[email protected]>
1 parent 978c652 commit b09deb2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tint/lang/core/ir/referenced_functions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include "src/tint/utils/containers/hashmap.h"
3636
#include "src/tint/utils/rtti/switch.h"
3737

38-
/// Utility that helps guarantee makes sure the same const-ness is applied to both type
38+
/// Utility that helps guarantee the same const-ness is applied to both types.
3939
template <class Src, class Dst>
4040
using TranscribeConst = std::conditional_t<std::is_const<Src>{}, std::add_const_t<Dst>, Dst>;
4141

src/tint/lang/core/ir/referenced_module_vars.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Block;
4343
class Function;
4444
} // namespace tint::core::ir
4545

46-
/// Utility that helps guarantee makes sure the same const-ness is applied to both type
46+
/// Utility that helps guarantee the same const-ness is applied to both types.
4747
template <class Src, class Dst>
4848
using TranscribeConst = std::conditional_t<std::is_const<Src>{}, std::add_const_t<Dst>, Dst>;
4949

0 commit comments

Comments
 (0)