]> source.dussan.org Git - gitea.git/commitdiff
Remove repetitive words (#30091)
authorcrazeteam <164632007+crazeteam@users.noreply.github.com>
Tue, 26 Mar 2024 07:48:53 +0000 (15:48 +0800)
committerGitHub <noreply@github.com>
Tue, 26 Mar 2024 07:48:53 +0000 (15:48 +0800)
remove repetitive words

Signed-off-by: crazeteam <lilujing@outlook.com>
routers/api/v1/repo/file.go
routers/web/repo/issue.go
tests/e2e/e2e_test.go

index 4895f7b1b3fcf97e5ed645989967a8935d5e0b04..156033f58aa55148a1de57af54da7d9f2607ecd1 100644 (file)
@@ -145,7 +145,7 @@ func GetRawFileOrLFS(ctx *context.APIContext) {
                return
        }
 
-       // OK, now the blob is known to have at most 1024 bytes we can simply read this in in one go (This saves reading it twice)
+       // OK, now the blob is known to have at most 1024 bytes we can simply read this in one go (This saves reading it twice)
        dataRc, err := blob.DataAsync()
        if err != nil {
                ctx.ServerError("DataAsync", err)
index 930a71d35fee915baa0cf58d774a5bb6af7d97d7..12233d0e174eb96ea92f2636cf184b793310290f 100644 (file)
@@ -1601,7 +1601,7 @@ func ViewIssue(ctx *context.Context) {
        }
        marked[issue.PosterID] = issue.ShowRole
 
-       // Render comments and and fetch participants.
+       // Render comments and fetch participants.
        participants[0] = issue.Poster
 
        if err := issue.Comments.LoadAttachmentsByIssue(ctx); err != nil {
index df4fe95fdb18faaa8eef9bee1906bf75d8c08345..d15aa9a027d1ff41e530e00f5627b26da53b6ec1 100644 (file)
@@ -75,7 +75,7 @@ func TestMain(m *testing.M) {
 
 // TestE2e should be the only test e2e necessary. It will collect all "*.test.e2e.js" files in this directory and build a test for each.
 func TestE2e(t *testing.T) {
-       // Find the paths of all e2e test files in test test directory.
+       // Find the paths of all e2e test files in test directory.
        searchGlob := filepath.Join(filepath.Dir(setting.AppPath), "tests", "e2e", "*.test.e2e.js")
        paths, err := filepath.Glob(searchGlob)
        if err != nil {