Skip to content

Commit

Permalink
Fixing package name in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjcowan committed Dec 13, 2024
1 parent 4041a6b commit c8d9ecf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/main-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ function markdownToHtml(markdown, config) {
if (href.startsWith("src/") && config && config.repositoryUrl) {
href = href.replace(
"src/",
`${config.repositoryUrl.trimEnd("/")}/src/`
`${config.repositoryUrl.trimEnd("/")}/blob/main/src/`
);
}
if (href.startsWith("http")) {
Expand Down
2 changes: 1 addition & 1 deletion tests/MJCZone.DapperMatic.Tests/TestOutputDocs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void Can_generate_docs()
File.WriteAllText(jsonFile, JsonSerializer.Serialize(output, serializationSettings));
//Logger.WriteLine(JsonSerializer.Serialize(akovData, serializationSettings));

var docsJsonFileName = $"{assembly.GetName().Name}.docs.json";
var docsJsonFileName = $"{assembly.GetName().Name}.json";
var docsJsonFile = Path.Combine(assemblyDirectory, docsJsonFileName);
var docs = new Docs();
docs.AddAssembly(assembly, xml);
Expand Down

0 comments on commit c8d9ecf

Please sign in to comment.