Parcourir la source

Remove repetitive words (#30091)

remove repetitive words

Signed-off-by: crazeteam <lilujing@outlook.com>
tags/v1.22.0-rc0
crazeteam il y a 2 mois
Parent
révision
ecbc9cee2b
Aucun compte lié à l'adresse e-mail de l'auteur
3 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 1
    1
      routers/api/v1/repo/file.go
  2. 1
    1
      routers/web/repo/issue.go
  3. 1
    1
      tests/e2e/e2e_test.go

+ 1
- 1
routers/api/v1/repo/file.go Voir le fichier

@@ -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)

+ 1
- 1
routers/web/repo/issue.go Voir le fichier

@@ -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 {

+ 1
- 1
tests/e2e/e2e_test.go Voir le fichier

@@ -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 {

Chargement…
Annuler
Enregistrer