We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6f1f82 commit c04bf1cCopy full SHA for c04bf1c
src/hexdocs/services/hexdocs.gleam
@@ -58,8 +58,8 @@ pub fn typesense_search(
58
59
pub fn package_path(document: Document) {
60
case string.split_once(document.package, "-") {
61
- Ok(#(package, version)) -> package <> "/" <> version
62
- Error(Nil) -> document.package
+ Ok(#(package, version)) -> "/" <> package <> "/" <> version
+ Error(Nil) -> "/" <> document.package
63
}
64
65
0 commit comments