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

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Martinez <joelmartinez@gmail.com>2014-08-14 22:16:29 +0400
committerDuncan Mak <duncanm@microsoft.com>2016-10-08 03:30:43 +0300
commit26f4661eedcea86f77c9f12db6576bc9767469cd (patch)
tree39dd65817b3f5ea3f45b4cfd81a0cc0e7584f81a /monodoc
parentab570dfe14ef4b5e77145c7a01d831ff231ae169 (diff)
[mdoc] Style updates per pull request feedback
Diffstat (limited to 'monodoc')
-rw-r--r--monodoc/Monodoc/providers/EcmaDoc.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/monodoc/Monodoc/providers/EcmaDoc.cs b/monodoc/Monodoc/providers/EcmaDoc.cs
index 08ef203e..bf14a24c 100644
--- a/monodoc/Monodoc/providers/EcmaDoc.cs
+++ b/monodoc/Monodoc/providers/EcmaDoc.cs
@@ -585,11 +585,11 @@ namespace Monodoc.Providers
var summary = docs.Element("summary") ?? new XElement("summary");
var remarks = docs.Element("remarks") ?? new XElement("remarks");
return new XElement ("class",
- new XAttribute ("name", name ?? string.Empty),
- new XAttribute ("fullname", fullName ?? string.Empty),
- new XAttribute ("assembly", assemblyName ?? string.Empty),
- summary,
- remarks);
+ new XAttribute ("name", name ?? string.Empty),
+ new XAttribute ("fullname", fullName ?? string.Empty),
+ new XAttribute ("assembly", assemblyName ?? string.Empty),
+ summary,
+ remarks);
}
}
}