diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-05 10:05:04 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-05 10:05:04 +0800 |
commit | 80492711b4588c10dffa93a57fd9926dc337bbae (patch) | |
tree | 93b6240452b0c274d2f50cb396ae8e441b3ff6ea /http_handle_repo_commit.go | |
parent | *: Replacing more := with var (diff) | |
download | forge-80492711b4588c10dffa93a57fd9926dc337bbae.tar.gz forge-80492711b4588c10dffa93a57fd9926dc337bbae.tar.zst forge-80492711b4588c10dffa93a57fd9926dc337bbae.zip |
*: Typing fixes
Diffstat (limited to '')
-rw-r--r-- | http_handle_repo_commit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http_handle_repo_commit.go b/http_handle_repo_commit.go index 094a862..8f2204e 100644 --- a/http_handle_repo_commit.go +++ b/http_handle_repo_commit.go @@ -103,7 +103,7 @@ var fake_diff_file_null = fake_diff_file{ path: "", } -func make_usable_file_patches(patch diff.Patch) (usable_file_patches []usable_file_patch) { +func make_usable_file_patches(patch diff.Patch) (usable_file_patches []usable_file_patch_t) { // TODO: Remove unnecessary context // TODO: Prepend "+"/"-"/" " instead of solely distinguishing based on color |