Skip to content

Commit

Permalink
Regenerate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-light committed Dec 14, 2023
1 parent 194f1f4 commit 4568b05
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 71 deletions.
11 changes: 0 additions & 11 deletions docs/Summary.Base.md

This file was deleted.

11 changes: 0 additions & 11 deletions docs/Summary.Base2.md

This file was deleted.

3 changes: 1 addition & 2 deletions docs/Summary.Caching.CrefCache.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,14 @@ var b = a.AsCref();
b.Should().Be("Some{,}");
```

### [FromCref(string)](../src/Core/Caching/CrefCache.cs#L74)
### [FromCref(string)](../src/Core/Caching/CrefCache.cs#L73)
```cs
public static string FromCref(this string self)
```

Converts the given string from the format of `cref` attribute value.

#### Example
In the following example, the `"Some<T1, T2>"` string
In the following example, the `"Some{T1,T2}"` string
(which represents the name of some type in the `cref` format)
is converted into `"Some<T1, T2>` so that it can be displayed somewhere.
Expand Down
13 changes: 0 additions & 13 deletions docs/Summary.CrefSample{T0}.Child.md

This file was deleted.

18 changes: 0 additions & 18 deletions docs/Summary.CrefSample{T0}.md

This file was deleted.

4 changes: 2 additions & 2 deletions docs/DocEvent.md → docs/Summary.DocEvent.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
public record DocEvent : DocMember
```

A [`DocMember`](./DocMember.md) that represents a documented event in the parsed source code.
A [`DocMember`](./Summary.DocMember.md) that represents a documented event in the parsed source code.

_Similar to [`DocProperty`](./DocProperty.md) but with its own set of accessors._
_Similar to [`DocProperty`](./Summary.DocProperty.md) but with its own set of accessors._

## Properties
### [Type](../src/Core/DocEvent.cs#L14)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public record DocPropertyAccessor
```

One of the [`DocProperty`](./DocProperty.md) accessors (e.g., `get`, `set`, `init`).
One of the [`DocProperty`](./Summary.DocProperty.md) accessors (e.g., `get`, `set`, `init`).

## Fields
### [Access](../src/Core/DocPropertyAccessor.cs#L29)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public static class FilteringExtensions
```

A set of extensions for [`SummaryPipeline`](./SummaryPipeline.md) that add support for filtering functionality.
A set of extensions for [`SummaryPipeline`](./Summary.Pipelines.SummaryPipeline.md) that add support for filtering functionality.

## Methods
### [UseDefaultFilters(SummaryPipeline)](../src/Core/Pipelines/SummaryPipelineFilteringExtensions.cs#L14)
Expand Down
11 changes: 0 additions & 11 deletions docs/Summary2.ClassX.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ public static DocIndexer Indexer(this IndexerDeclarationSyntax self) =>
Params = self.ParameterList.Params(),
Usings = self.Usings(),
Accessors = self.Accessors(),
Params = self.ParameterList.Params(),
Generated = false,
Event = false,
};
Expand Down

0 comments on commit 4568b05

Please sign in to comment.