diff --git a/Source/Editor/Content/Items/SettingsItem/AndroidPlatformSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/AndroidPlatformSettingsItem.cs
index 4b161bbef..98ecb97fe 100644
--- a/Source/Editor/Content/Items/SettingsItem/AndroidPlatformSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/AndroidPlatformSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- ///
+ /// The Name of the resource type.
public AndroidPlatformSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/AudioSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/AudioSettingsItem.cs
index 69a931126..0a4b1818e 100644
--- a/Source/Editor/Content/Items/SettingsItem/AudioSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/AudioSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- ///
+ /// The Name of the resource type.
public AudioSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/BuildSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/BuildSettingsItem.cs
index 6f471d912..1cc976560 100644
--- a/Source/Editor/Content/Items/SettingsItem/BuildSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/BuildSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- ///
+ /// The Name of the resource type.
public BuildSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/GameSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/GameSettingsItem.cs
index 9515bb987..c0282d171 100644
--- a/Source/Editor/Content/Items/SettingsItem/GameSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/GameSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- ///
+ /// The Name of the resource type.
public GameSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/GraphicsSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/GraphicsSettingsItem.cs
index 4d08f6f9c..82d1bba96 100644
--- a/Source/Editor/Content/Items/SettingsItem/GraphicsSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/GraphicsSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- ///
+ /// The Name of the resource type.
public GraphicsSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/InputSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/InputSettingsItem.cs
index 3b532799e..f759e5c6a 100644
--- a/Source/Editor/Content/Items/SettingsItem/InputSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/InputSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- ///
+ /// The Name of the resource type.
public InputSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/LayersAndTagsSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/LayersAndTagsSettingsItem.cs
index 75485a279..29caa028d 100644
--- a/Source/Editor/Content/Items/SettingsItem/LayersAndTagsSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/LayersAndTagsSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- ///
+ /// The Name of the resource type.
public LayersAndTagsSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/LinuxPlatformSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/LinuxPlatformSettingsItem.cs
index 4e43326f0..c6e78bf66 100644
--- a/Source/Editor/Content/Items/SettingsItem/LinuxPlatformSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/LinuxPlatformSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- /// Name of the resource type.
+ /// The Name of the resource type.
public LinuxPlatformSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/NavigationSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/NavigationSettingsItem.cs
index a2e9c58e4..22d43b94b 100644
--- a/Source/Editor/Content/Items/SettingsItem/NavigationSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/NavigationSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- ///
+ /// The Name of the resource type.
public NavigationSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/PhysicsSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/PhysicsSettingsItem.cs
index 9613f3b72..78fdd9e92 100644
--- a/Source/Editor/Content/Items/SettingsItem/PhysicsSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/PhysicsSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- ///
+ /// The Name of the resource type.
public PhysicsSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/TimeSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/TimeSettingsItem.cs
index 1cc798695..1f54f53f0 100644
--- a/Source/Editor/Content/Items/SettingsItem/TimeSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/TimeSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- ///
+ /// The Name of the resource type.
public TimeSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/UWPPlatformSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/UWPPlatformSettingsItem.cs
index 8e11af39f..d83262340 100644
--- a/Source/Editor/Content/Items/SettingsItem/UWPPlatformSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/UWPPlatformSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- /// Name of the resource type.
+ /// The Name of the resource type.
public UWPPlatformSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{
diff --git a/Source/Editor/Content/Items/SettingsItem/WindowsPlatformSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/WindowsPlatformSettingsItem.cs
index 5fc52815d..caf4b3012 100644
--- a/Source/Editor/Content/Items/SettingsItem/WindowsPlatformSettingsItem.cs
+++ b/Source/Editor/Content/Items/SettingsItem/WindowsPlatformSettingsItem.cs
@@ -16,7 +16,7 @@ namespace FlaxEditor.Content
///
/// The asset path.
/// The asset identifier.
- /// Name of the resource type.
+ /// The Name of the resource type.
public WindowsPlatformSettingsItem(string path, Guid id, string typeName)
: base(path, id, typeName)
{