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:
authorJonathan Pryor <jonpryor@vt.edu>2012-01-24 02:40:55 +0400
committerDuncan Mak <duncanm@microsoft.com>2016-10-08 03:29:39 +0300
commit7e2d342d437c81f6785fd9fe8f823870f5578f99 (patch)
treec282f4a741ba3609f040767201aa46beefbb3ed5 /mdoc/Test/DocTest-v1.cs
parente6244bb043f41af72cc0e0c3f1d3027bc7dccd44 (diff)
[mdoc] Generate docs for nested `protected` types.
Nested `protected` types are accessible from subclasses, and thus should be documented just as `public` nested types are.
Diffstat (limited to 'mdoc/Test/DocTest-v1.cs')
-rw-r--r--mdoc/Test/DocTest-v1.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdoc/Test/DocTest-v1.cs b/mdoc/Test/DocTest-v1.cs
index 4739d629..6896008e 100644
--- a/mdoc/Test/DocTest-v1.cs
+++ b/mdoc/Test/DocTest-v1.cs
@@ -231,7 +231,7 @@ namespace Mono.DocTest {
/// <remarks><c>T:Mono.DocTest.Widget.Direction</c>.</remarks>
[Flags]
- public enum Direction {
+ protected internal enum Direction {
/// <remarks><c>T:Mono.DocTest.Widget.Direction.North</c>.</remarks>
North,
/// <remarks><c>T:Mono.DocTest.Widget.Direction.South</c>.</remarks>
@@ -576,7 +576,7 @@ namespace Mono.DocTest.Generic {
/// <remarks>T:Mono.DocTest.Generic.GenericBase`1.NestedCollection</remarks>
public class NestedCollection {
/// <remarks>T:Mono.DocTest.Generic.GenericBase`1.NestedCollection.Enumerator</remarks>
- public struct Enumerator {
+ protected internal struct Enumerator {
}
}
}