summaryrefslogtreecommitdiff
path: root/src/vm/clsload.cpp
diff options
context:
space:
mode:
authorあまみや ゆうこ <1@1234.sh>2015-10-07 07:00:15 +0800
committerあまみや ゆうこ <1@1234.sh>2015-10-07 07:00:15 +0800
commit1f940efbe82d6ba5a9c7f8269f087d0709d77011 (patch)
tree15c32f2a8a5a53d34afef901f827c960da885dbb /src/vm/clsload.cpp
parentef9e505c66a82dc6928b8ddf9332a88e675d532d (diff)
downloadcoreclr-1f940efbe82d6ba5a9c7f8269f087d0709d77011.tar.gz
coreclr-1f940efbe82d6ba5a9c7f8269f087d0709d77011.tar.bz2
coreclr-1f940efbe82d6ba5a9c7f8269f087d0709d77011.zip
correct word spelling
Diffstat (limited to 'src/vm/clsload.cpp')
-rw-r--r--src/vm/clsload.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/clsload.cpp b/src/vm/clsload.cpp
index 2798ce2c77..145da42e6e 100644
--- a/src/vm/clsload.cpp
+++ b/src/vm/clsload.cpp
@@ -5078,7 +5078,7 @@ void AccessCheckOptions::ThrowAccessException(
// If the caller and target method are non-null and the same, then this means that we're checking to see
// if the method has access to itself in order to validate that it has access to its parameter types,
// containing type, and return type. In this case, throw a more informative TypeAccessException to
- // describe the error that occured (for instance, "this method doesn't have access to one of its
+ // describe the error that occurred (for instance, "this method doesn't have access to one of its
// parameter types", rather than "this method doesn't have access to itself").
// We only want to do this if we know the exact type that caused the problem, otherwise fall back to
// throwing the standard MethodAccessException.