diff --git a/Source/Editor/CustomEditors/CustomEditor.cs b/Source/Editor/CustomEditors/CustomEditor.cs
index c1c004d43..07cc1c08d 100644
--- a/Source/Editor/CustomEditors/CustomEditor.cs
+++ b/Source/Editor/CustomEditors/CustomEditor.cs
@@ -797,7 +797,7 @@ namespace FlaxEditor.CustomEditors
}
///
- /// Called when custom editor sets the value to the object and resets the dirty state. Can be sued to perform custom work after editing the target object.
+ /// Called when custom editor sets the value to the object and resets the dirty state. Can be used to perform custom work after editing the target object.
///
protected virtual void OnUnDirty()
{
diff --git a/Source/Editor/Editor.cs b/Source/Editor/Editor.cs
index d28800b33..3d91d87b3 100644
--- a/Source/Editor/Editor.cs
+++ b/Source/Editor/Editor.cs
@@ -789,7 +789,7 @@ namespace FlaxEditor
/// The collision data type.
/// The source model.
/// The source model LOD index.
- /// The source model material slots mask. One bit per-slot. Can be sued to exclude particular material slots from collision cooking.
+ /// The source model material slots mask. One bit per-slot. Can be used to exclude particular material slots from collision cooking.
/// The convex mesh generation flags.
/// The convex mesh vertex limit. Use values in range [8;255]
/// True if failed, otherwise false.
diff --git a/Source/Editor/GUI/CurveEditor.cs b/Source/Editor/GUI/CurveEditor.cs
index 3819b5758..57f40d583 100644
--- a/Source/Editor/GUI/CurveEditor.cs
+++ b/Source/Editor/GUI/CurveEditor.cs
@@ -102,7 +102,7 @@ namespace FlaxEditor.GUI
public abstract Type ValueType { get; }
///
- /// The amount of frames per second of the curve animation (optional). Can be sued to restrict the keyframes time values to the given time quantization rate.
+ /// The amount of frames per second of the curve animation (optional). Can be used to restrict the keyframes time values to the given time quantization rate.
///
public abstract float? FPS { get; set; }
diff --git a/Source/Editor/GUI/Timeline/GUI/KeyframesEditor.cs b/Source/Editor/GUI/Timeline/GUI/KeyframesEditor.cs
index 25f6ffb0a..783480c09 100644
--- a/Source/Editor/GUI/Timeline/GUI/KeyframesEditor.cs
+++ b/Source/Editor/GUI/Timeline/GUI/KeyframesEditor.cs
@@ -592,7 +592,7 @@ namespace FlaxEditor.GUI
public object DefaultValue;
///
- /// The amount of frames per second of the keyframes animation (optional). Can be sued to restrict the keyframes time values to the given time quantization rate.
+ /// The amount of frames per second of the keyframes animation (optional). Can be used to restrict the keyframes time values to the given time quantization rate.
///
public float? FPS
{
diff --git a/Source/Editor/GUI/Timeline/Timeline.cs b/Source/Editor/GUI/Timeline/Timeline.cs
index 10dc35e0b..8481e4aa2 100644
--- a/Source/Editor/GUI/Timeline/Timeline.cs
+++ b/Source/Editor/GUI/Timeline/Timeline.cs
@@ -584,7 +584,7 @@ namespace FlaxEditor.GUI.Timeline
}
///
- /// Gets or sets a value indicating whether user can sue Play/Pause/Stop buttons, otherwise those should be disabled.
+ /// Gets or sets a value indicating whether user can use Play/Pause/Stop buttons, otherwise those should be disabled.
///
public bool CanPlayPauseStop
{
@@ -1024,12 +1024,12 @@ namespace FlaxEditor.GUI.Timeline
}
///
- /// Occurs when timeline shows the View context menu. Can be sued to add custom options.
+ /// Occurs when timeline shows the View context menu. Can be used to add custom options.
///
public event Action ShowViewContextMenu;
///
- /// Called when timeline shows the View context menu. Can be sued to add custom options.
+ /// Called when timeline shows the View context menu. Can be used to add custom options.
///
/// The menu.
protected virtual void OnShowViewContextMenu(ContextMenu.ContextMenu menu)
diff --git a/Source/Editor/Windows/Assets/CollisionDataWindow.cs b/Source/Editor/Windows/Assets/CollisionDataWindow.cs
index f532ab11f..560270649 100644
--- a/Source/Editor/Windows/Assets/CollisionDataWindow.cs
+++ b/Source/Editor/Windows/Assets/CollisionDataWindow.cs
@@ -50,7 +50,7 @@ namespace FlaxEditor.Windows.Assets
[EditorOrder(20), Limit(0, 5), EditorDisplay("General", "Model LOD Index"), Tooltip("Source model LOD index to use for collision data generation (will be clamped to the actual model LODs collection size)")]
public int ModelLodIndex;
- [EditorOrder(30), EditorDisplay("General"), Tooltip("The source model material slots mask. One bit per-slot. Can be sued to exclude particular material slots from collision cooking.")]
+ [EditorOrder(30), EditorDisplay("General"), Tooltip("The source model material slots mask. One bit per-slot. Can be used to exclude particular material slots from collision cooking.")]
public MaterialSlotsMask MaterialSlotsMask = MaterialSlotsMask.All;
[EditorOrder(100), EditorDisplay("Convex Mesh", "Convex Flags"), Tooltip("Convex mesh generation flags")]
diff --git a/Source/Engine/UI/GUI/RenderOutputControl.cs b/Source/Engine/UI/GUI/RenderOutputControl.cs
index bad38b3c3..8dd76892e 100644
--- a/Source/Engine/UI/GUI/RenderOutputControl.cs
+++ b/Source/Engine/UI/GUI/RenderOutputControl.cs
@@ -67,7 +67,7 @@ namespace FlaxEngine.GUI
public float Brightness { get; set; } = 1.0f;
///
- /// Gets or sets the rendering resolution scale. Can be sued to upscale image or to downscale the rendering to save the performance.
+ /// Gets or sets the rendering resolution scale. Can be used to upscale image or to downscale the rendering to save the performance.
///
public float ResolutionScale { get; set; } = 1.0f;