We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 680f924 commit 15ce3a5Copy full SHA for 15ce3a5
1 file changed
third_party/docfx-doclet-143274/src/main/java/com/google/docfx/doclet/RepoMetadata.java
@@ -149,6 +149,10 @@ public String getGithubLink() {
149
|| Objects.equals(this.repo, "googleapis/sdk-platform-java")) {
150
githubLink = githubLink + "/tree/main/" + this.repoShort;
151
}
152
+ // Handwritten libraries have a different base URI
153
+ else {
154
+ githubLink = githubLink + "/tree/main/";
155
+ }
156
return githubLink;
157
158
0 commit comments