diff --git a/Source/Editor/Modules/ContentDatabaseModule.cs b/Source/Editor/Modules/ContentDatabaseModule.cs
index 98359b31f..ae921b486 100644
--- a/Source/Editor/Modules/ContentDatabaseModule.cs
+++ b/Source/Editor/Modules/ContentDatabaseModule.cs
@@ -198,12 +198,11 @@ namespace FlaxEditor.Modules
}
///
/// Gets the virtual proxy object from given path.
- ///
use case if the asset u trying to display is not a flax asset but u like to add custom functionality
- ///
to context menu,or display it the asset
+ ///
Useful if the asset that needs to be displayed is not a Flax asset but needs custom functionality.
///
/// The asset path.
- /// Asset proxy or null if cannot find.
- public AssetProxy GetAssetVirtuallProxy(string path)
+ /// Asset proxy or null if not found.
+ public AssetProxy GetAssetVirtualProxy(string path)
{
for (int i = 0; i < Proxy.Count; i++)
{
@@ -1019,7 +1018,7 @@ namespace FlaxEditor.Modules
}
if (item == null)
{
- var proxy = GetAssetVirtuallProxy(path);
+ var proxy = GetAssetVirtualProxy(path);
item = proxy?.ConstructItem(path, assetInfo.TypeName, ref assetInfo.ID);
if (item == null)
{