summaryrefslogtreecommitdiff
path: root/src/vm/proftoeeinterfaceimpl.cpp
diff options
context:
space:
mode:
authorPascal Borreli <pascal@borreli.com>2015-02-04 00:50:32 +0000
committerPascal Borreli <pascal@borreli.com>2015-02-04 18:15:43 +0000
commitf4deb582eddb445b6afee1f497bf295e9c3d3cd8 (patch)
tree2ae0e45263f7fa5e83cacdc8445dcca3d86fc7f2 /src/vm/proftoeeinterfaceimpl.cpp
parent864d5c9f25ad3556b1dc294d148e7236ba93a2f4 (diff)
downloadcoreclr-f4deb582eddb445b6afee1f497bf295e9c3d3cd8.tar.gz
coreclr-f4deb582eddb445b6afee1f497bf295e9c3d3cd8.tar.bz2
coreclr-f4deb582eddb445b6afee1f497bf295e9c3d3cd8.zip
Fixed typos
Diffstat (limited to 'src/vm/proftoeeinterfaceimpl.cpp')
-rw-r--r--src/vm/proftoeeinterfaceimpl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vm/proftoeeinterfaceimpl.cpp b/src/vm/proftoeeinterfaceimpl.cpp
index ea32a0dfa8..9d2469f236 100644
--- a/src/vm/proftoeeinterfaceimpl.cpp
+++ b/src/vm/proftoeeinterfaceimpl.cpp
@@ -5404,16 +5404,16 @@ HRESULT ProfToEEInterfaceImpl::GetClassFromTokenAndTypeArgs(ModuleID moduleID,
// try to load a type, so that type system will not try to test type
// loadability in the current AppDomain. However,
// ENABLE_FORBID_GC_LOADER_USE_IN_THIS_SCOPE does not prevent callers from
- // loading a type. It is profiler's responsiblity not to attempt to load
+ // loading a type. It is profiler's responsibility not to attempt to load
// a type in unsupported ways (e.g. from a non-EE thread). It doesn't
// impact retail builds, in which contracts are not available.
ENABLE_FORBID_GC_LOADER_USE_IN_THIS_SCOPE();
// ENABLE_FORBID_GC_LOADER_USE_IN_THIS_SCOPE also defines FAULT_FORBID, which
// causes Scanruntime to flag a fault violation in AssemblySpec::InitializeSpec,
- // which is defined as FAULTS. It only happneds in a type-loading path, which
+ // which is defined as FAULTS. It only happens in a type-loading path, which
// is not supported on a non-EE thread. Suppressing a contract violation in an
- // unsupported execution path is more preferable than casuing AV when calling
+ // unsupported execution path is more preferable than causing AV when calling
// GetClassFromTokenAndTypeArgs on a non-EE thread in a check build. See Dev10
// 682526 for more details.
FAULT_NOT_FATAL();