Skip to content

Commit fd66970

Browse files
committed
Fix type
1 parent db83acb commit fd66970

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Elastic.Documentation.LinkIndex/LinkIndexProvider.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ public interface ILinkIndexProvider
1515
Task<LinkReferenceRegistry> GetLinkIndex(Cancel cancellationToken = default);
1616
Task SaveLinkIndex(LinkReferenceRegistry registry, Cancel cancellationToken = default);
1717
Task<LinkReference> GetLinkReference(string key, Cancel cancellationToken = default);
18-
1918
string GetLinkIndexPublicUrl();
2019
}
2120

src/tooling/docs-assembler/Cli/ContentSourceCommands.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public async Task<int> Validate(Cancel ctx = default)
4343
Force = false,
4444
AllowIndexing = false
4545
};
46-
var linkIndexProvider = AwsS3LinkIndexProvider.CreateAnonymous();
46+
ILinkIndexProvider linkIndexProvider = AwsS3LinkIndexProvider.CreateAnonymous();
4747
var fetcher = new AssemblerCrossLinkFetcher(logFactory, context.Configuration, context.Environment, linkIndexProvider);
4848
var links = await fetcher.FetchLinkIndex(ctx);
4949
var repositories = context.Configuration.ReferenceRepositories.Values.Concat<Repository>([context.Configuration.Narrative]).ToList();

0 commit comments

Comments
 (0)