diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2022-10-19 00:52:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-18 12:52:25 -0400 |
commit | 0614ae1c446e6a4ddaed4cca5a43ce7a2003d890 (patch) | |
tree | 2fc100f945bb84da9db240e88603ea8f0ab4e322 /modules | |
parent | f0182d88402c68c4032bd5314680ef4bee1f16ea (diff) | |
download | gitea-0614ae1c446e6a4ddaed4cca5a43ce7a2003d890.tar.gz gitea-0614ae1c446e6a4ddaed4cca5a43ce7a2003d890.zip |
Remove unnecessary misspell ignore pattern (#21475)
It doesn't make sense to ignore the pattern again and again.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/paginator/paginator.go | 2 | ||||
-rw-r--r-- | modules/paginator/paginator_test.go | 2 | ||||
-rw-r--r-- | modules/references/references_test.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/paginator/paginator.go b/modules/paginator/paginator.go index 873cfe49d4..342ee8929c 100644 --- a/modules/paginator/paginator.go +++ b/modules/paginator/paginator.go @@ -1,5 +1,5 @@ // Copyright 2022 The Gitea Authors. -// Copyright 2015 Unknwon. Licensed under the Apache License, Version 2.0 +// Copyright 2015 https://github.com/unknwon. Licensed under the Apache License, Version 2.0 package paginator diff --git a/modules/paginator/paginator_test.go b/modules/paginator/paginator_test.go index ce7b7275e1..404f76f6c4 100644 --- a/modules/paginator/paginator_test.go +++ b/modules/paginator/paginator_test.go @@ -1,5 +1,5 @@ // Copyright 2022 The Gitea Authors. -// Copyright 2015 Unknwon. Licensed under the Apache License, Version 2.0 +// Copyright 2015 https://github.com/unknwon. Licensed under the Apache License, Version 2.0 package paginator diff --git a/modules/references/references_test.go b/modules/references/references_test.go index adf86a3c6c..507adadb1f 100644 --- a/modules/references/references_test.go +++ b/modules/references/references_test.go @@ -309,7 +309,7 @@ func TestRegExp_mentionPattern(t *testing.T) { pat string exp string }{ - {"@Unknwon", "@Unknwon"}, + {"@User", "@User"}, {"@ANT_123", "@ANT_123"}, {"@xxx-DiN0-z-A..uru..s-xxx", "@xxx-DiN0-z-A..uru..s-xxx"}, {" @lol ", "@lol"}, |