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>2009-06-23 02:04:58 +0400
committerMarek Safar <marek.safar@gmail.com>2009-06-23 02:04:58 +0400
commita94f3c09106d29e5f7bce961ba25ed870067ccdb (patch)
tree6d1f1afef6fbf299374dc93555d416038d4b08d4 /mcs/errors
parentdc7b885bae38981520fa4a5cafc2149c80cbac60 (diff)
Message update
svn path=/trunk/mcs/; revision=136651
Diffstat (limited to 'mcs/errors')
-rw-r--r--mcs/errors/cs0643.cs2
-rw-r--r--mcs/errors/cs1016.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/mcs/errors/cs0643.cs b/mcs/errors/cs0643.cs
index d11593e67f5..b0096f5a6b9 100644
--- a/mcs/errors/cs0643.cs
+++ b/mcs/errors/cs0643.cs
@@ -1,4 +1,4 @@
-// cs0643.cs: 'x' duplicate named attribute argument
+// CS0643: Duplicate named attribute `x' argument
// Line: 8
using System;
diff --git a/mcs/errors/cs1016.cs b/mcs/errors/cs1016.cs
index 890c5cda0db..69a36460318 100644
--- a/mcs/errors/cs1016.cs
+++ b/mcs/errors/cs1016.cs
@@ -1,4 +1,4 @@
-// cs1016.cs: Named attribute argument expected
+// CS1016: Named attribute arguments must appear after the positional arguments
// Line: 19
using System;
@@ -18,4 +18,4 @@ public class E
{
[Attr (Arg = "xxx", 3)]
public void Method () {}
-} \ No newline at end of file
+}