summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/coreclr/hosts/inc/coreclrhost.h4
-rw-r--r--src/dlls/mscoree/unixinterface.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/coreclr/hosts/inc/coreclrhost.h b/src/coreclr/hosts/inc/coreclrhost.h
index 2809dedbd1..d1ec724974 100644
--- a/src/coreclr/hosts/inc/coreclrhost.h
+++ b/src/coreclr/hosts/inc/coreclrhost.h
@@ -77,7 +77,7 @@ CORECLR_HOSTING_API(coreclr_shutdown_2,
int* latchedExitCode);
//
-// Create a native callable delegate for a managed method.
+// Create a native callable function pointer for a managed method.
//
// Parameters:
// hostHandle - Handle of the host
@@ -85,7 +85,7 @@ CORECLR_HOSTING_API(coreclr_shutdown_2,
// entryPointAssemblyName - Name of the assembly which holds the custom entry point
// entryPointTypeName - Name of the type which holds the custom entry point
// entryPointMethodName - Name of the method which is the custom entry point
-// delegate - Output parameter, the function stores a pointer to the delegate at the specified address
+// delegate - Output parameter, the function stores a native callable function pointer to the delegate at the specified address
//
// Returns:
// HRESULT indicating status of the operation. S_OK if the assembly was successfully executed
diff --git a/src/dlls/mscoree/unixinterface.cpp b/src/dlls/mscoree/unixinterface.cpp
index 7ad618eb5d..64fe0308eb 100644
--- a/src/dlls/mscoree/unixinterface.cpp
+++ b/src/dlls/mscoree/unixinterface.cpp
@@ -333,7 +333,7 @@ int coreclr_shutdown_2(
}
//
-// Create a native callable delegate for a managed method.
+// Create a native callable function pointer for a managed method.
//
// Parameters:
// hostHandle - Handle of the host
@@ -341,7 +341,7 @@ int coreclr_shutdown_2(
// entryPointAssemblyName - Name of the assembly which holds the custom entry point
// entryPointTypeName - Name of the type which holds the custom entry point
// entryPointMethodName - Name of the method which is the custom entry point
-// delegate - Output parameter, the function stores a pointer to the delegate at the specified address
+// delegate - Output parameter, the function stores a native callable function pointer to the delegate at the specified address
//
// Returns:
// HRESULT indicating status of the operation. S_OK if the assembly was successfully executed