Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2004-06-29 19:20:53 +0400
committerMarek Safar <marek.safar@gmail.com>2004-06-29 19:20:53 +0400
commit30cf47ab7e338abf06c5af8ad65b45440c99ac0d (patch)
tree0ac747c404d4a24eb6c925e89f55ff1bfa309894 /mcs/errors/cs0502.cs
parentc68ea769ee205cc7787746dfe1b1311405b4852b (diff)
fixed error message text
svn path=/trunk/mcs/; revision=30529
Diffstat (limited to 'mcs/errors/cs0502.cs')
-rw-r--r--mcs/errors/cs0502.cs11
1 files changed, 5 insertions, 6 deletions
diff --git a/mcs/errors/cs0502.cs b/mcs/errors/cs0502.cs
index e2232ec0c29..b589cba2f75 100644
--- a/mcs/errors/cs0502.cs
+++ b/mcs/errors/cs0502.cs
@@ -1,6 +1,5 @@
-// cs0502.cs: The class 'Sample' is abstract and sealed
-// Line: 4
-
-abstract sealed class Sample {
-}
-
+// cs0502.cs: 'Sample' cannot be both abstract and sealed
+// Line: 4
+
+abstract sealed class Sample {
+}