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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Strehovsky <michals@microsoft.com>2016-04-09 20:03:28 +0300
committerMichal Strehovsky <michals@microsoft.com>2016-04-09 20:03:28 +0300
commit938d32146ddc425888f3dc2b1f24321f1d71163c (patch)
tree9fa7c2f3a183d3381f54b84e2a6d5323f0d65b7b /src/ILCompiler.MetadataTransform
parenta737efce9e746d912f4dcf9598b3ffcfb054814e (diff)
Fix an outdated and bad comment in MetadataTransform. The one on HandleQualifiedField is bad too (no such thing as a FieldReference), but that one will likely go away in ProjNDev2, so I'm not touching it.
[tfs-changeset: 1594622]
Diffstat (limited to 'src/ILCompiler.MetadataTransform')
-rw-r--r--src/ILCompiler.MetadataTransform/src/ILCompiler/Metadata/MetadataTransform.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ILCompiler.MetadataTransform/src/ILCompiler/Metadata/MetadataTransform.cs b/src/ILCompiler.MetadataTransform/src/ILCompiler/Metadata/MetadataTransform.cs
index d1690b6b4..42babf71b 100644
--- a/src/ILCompiler.MetadataTransform/src/ILCompiler/Metadata/MetadataTransform.cs
+++ b/src/ILCompiler.MetadataTransform/src/ILCompiler/Metadata/MetadataTransform.cs
@@ -58,7 +58,7 @@ namespace ILCompiler.Metadata
public abstract MetadataRecord HandleType(Cts.TypeDesc type);
/// <summary>
- /// Retrieves an existing <see cref="QualifiedMethod"/> or <see cref="MethodReference"/>,
+ /// Retrieves an existing <see cref="QualifiedMethod"/>, <see cref="MemberReference"/>, or <see cref="MethodInstantiation"/>
/// record representing specified method in the metadata writer object model, or creates a new one.
/// </summary>
public abstract MetadataRecord HandleQualifiedMethod(Cts.MethodDesc method);