Skip to content

Commit eb32513

Browse files
committed
Fixed circular reference
Previously, the `<inheritdoc />` errantly referenced itself, which resulted in a stack overflow when generating the DocFx API documentation. Whoops! Easily resolved, since `WebPath` is defined on `INavigableTopicViewModel`, which `INavigableTopicViewModel<T>` implements. This will help support #29.
1 parent c718adc commit eb32513

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OnTopic.ViewModels/NavigationTopicViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public sealed record NavigationTopicViewModel : INavigationTopicViewModel<Naviga
4646
/*==========================================================================================================================
4747
| WEB PATH
4848
\-------------------------------------------------------------------------------------------------------------------------*/
49-
/// <inheritdoc cref="WebPath"/>
49+
/// <inheritdoc/>
5050
[Required]
5151
public string WebPath { get; init; } = default!;
5252

0 commit comments

Comments
 (0)