diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/resolve/lazy/ResolveSession.java b/compiler/frontend/src/org/jetbrains/jet/lang/resolve/lazy/ResolveSession.java index 38c7380d90d..1ceac22cd7d 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/resolve/lazy/ResolveSession.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/resolve/lazy/ResolveSession.java @@ -252,7 +252,7 @@ public class ResolveSession { } }, null); if (result == null) { - throw new IllegalStateException("No descriptor resolevd for " + declaration + " " + declaration.getText()); + throw new IllegalStateException("No descriptor resolved for " + declaration + " " + declaration.getText()); } return result; }