diff --git a/bindings/bf/bgfx.bf b/bindings/bf/bgfx.bf
index 4b0b800cc..24b4ed595 100644
--- a/bindings/bf/bgfx.bf
+++ b/bindings/bf/bgfx.bf
@@ -1,5 +1,5 @@
/*
- * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
@@ -1864,7 +1864,7 @@ public static class bgfx
TriListFlipWinding,
///
- /// Flip winding order of trinagle strip.
+ /// Flip winding order of triangle strip.
///
TriStripFlipWinding,
diff --git a/bindings/cs/bgfx.cs b/bindings/cs/bgfx.cs
index 03fe1bedd..1b8f19863 100644
--- a/bindings/cs/bgfx.cs
+++ b/bindings/cs/bgfx.cs
@@ -1,5 +1,5 @@
/*
- * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
@@ -1854,7 +1854,7 @@ public static partial class bgfx
TriListFlipWinding,
///
- /// Flip winding order of trinagle strip.
+ /// Flip winding order of triangle strip.
///
TriStripFlipWinding,
diff --git a/bindings/cs/bgfx_dllname.cs b/bindings/cs/bgfx_dllname.cs
index d71aa6d12..96eea8b37 100644
--- a/bindings/cs/bgfx_dllname.cs
+++ b/bindings/cs/bgfx_dllname.cs
@@ -1,5 +1,5 @@
/*
- * Copyright 2011-2020 Branimir Karadzic. All rights reserved.
+ * Copyright 2011-2021 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
diff --git a/bindings/d/types.d b/bindings/d/types.d
index 49be1ad41..41990fdce 100644
--- a/bindings/d/types.d
+++ b/bindings/d/types.d
@@ -644,7 +644,7 @@ enum bgfx_topology_t
enum bgfx_topology_convert_t
{
BGFX_TOPOLOGY_CONVERT_TRILISTFLIPWINDING, /// Flip winding order of triangle list.
- BGFX_TOPOLOGY_CONVERT_TRISTRIPFLIPWINDING, /// Flip winding order of trinagle strip.
+ BGFX_TOPOLOGY_CONVERT_TRISTRIPFLIPWINDING, /// Flip winding order of triangle strip.
BGFX_TOPOLOGY_CONVERT_TRILISTTOLINELIST, /// Convert triangle list to line list.
BGFX_TOPOLOGY_CONVERT_TRISTRIPTOTRILIST, /// Convert triangle strip to triangle list.
BGFX_TOPOLOGY_CONVERT_LINESTRIPTOLINELIST, /// Convert line strip to line list.
diff --git a/include/bgfx/c99/bgfx.h b/include/bgfx/c99/bgfx.h
index ad09f195d..db61b3a75 100644
--- a/include/bgfx/c99/bgfx.h
+++ b/include/bgfx/c99/bgfx.h
@@ -332,7 +332,7 @@ typedef enum bgfx_topology
typedef enum bgfx_topology_convert
{
BGFX_TOPOLOGY_CONVERT_TRI_LIST_FLIP_WINDING, /** ( 0) Flip winding order of triangle list. */
- BGFX_TOPOLOGY_CONVERT_TRI_STRIP_FLIP_WINDING, /** ( 1) Flip winding order of trinagle strip. */
+ BGFX_TOPOLOGY_CONVERT_TRI_STRIP_FLIP_WINDING, /** ( 1) Flip winding order of triangle strip. */
BGFX_TOPOLOGY_CONVERT_TRI_LIST_TO_LINE_LIST, /** ( 2) Convert triangle list to line list. */
BGFX_TOPOLOGY_CONVERT_TRI_STRIP_TO_TRI_LIST, /** ( 3) Convert triangle strip to triangle list. */
BGFX_TOPOLOGY_CONVERT_LINE_STRIP_TO_LINE_LIST, /** ( 4) Convert line strip to line list. */
diff --git a/scripts/bgfx.idl b/scripts/bgfx.idl
index 0094f4e68..382f862f2 100644
--- a/scripts/bgfx.idl
+++ b/scripts/bgfx.idl
@@ -636,7 +636,7 @@ enum.Topology { underscore, comment = "Primitive topology:" }
--- Topology conversion function.
enum.TopologyConvert { underscore , comment = "Topology conversion functions:" }
.TriListFlipWinding [[Flip winding order of triangle list.]]
- .TriStripFlipWinding [[Flip winding order of trinagle strip.]]
+ .TriStripFlipWinding [[Flip winding order of triangle strip.]]
.TriListToLineList [[Convert triangle list to line list.]]
.TriStripToTriList [[Convert triangle strip to triangle list.]]
.LineStripToLineList [[Convert line strip to line list.]]