Found one typo by trying out the vouching system, found the other two by using the typos cli (https://github.com/crate-ci/typos).
+3
-3
Diff
round #0
+1
-1
appview/pages/templates/user/fragments/vouchPopover.html
+1
-1
appview/pages/templates/user/fragments/vouchPopover.html
···
37
37
{{ with .VouchRelationship }}
38
38
{{ with .GetDirectVouch }}
39
39
You {{if $isVouched}}vouched{{else}}denounced{{end}} {{ $userIdent }} {{ relTimeFmt .CreatedAt }}.
40
-
You can change your descision below.
40
+
You can change your decision below.
41
41
{{ else }}
42
42
Vouching builds a web-of-trust across Tangled. Vouch for users you
43
43
have had positive interactions with. <a href="https://blog.tangled.org/vouching" class="inline-flex items-center gap-1">Read more {{ i "arrow-right" "size-3" }}</a>
+1
-1
appview/repo/branches.go
+1
-1
appview/repo/branches.go
···
77
77
},
78
78
)
79
79
if xrpcerr := xrpcclient.HandleXrpcErr(err); xrpcerr != nil {
80
-
l.Error("Faield to delete branch", "xrpcerr", xrpcerr, "err", err)
80
+
l.Error("Failed to delete branch", "xrpcerr", xrpcerr, "err", err)
81
81
rp.pages.Notice(w, noticeId, fmt.Sprintf("Failed to delete branch: %s", xrpcerr))
82
82
return
83
83
}
+1
-1
knotmirror/xrpc/git_get_blob.go
+1
-1
knotmirror/xrpc/git_get_blob.go
···
95
95
96
96
case strings.HasPrefix(mimeType, "text/") || isTextualMimeType(mimeType):
97
97
w.Header().Set("Cache-Control", "public, no-cache")
98
-
// seve all text content as text/plain
98
+
// serve all text content as text/plain
99
99
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
100
100
101
101
default:
History
1 round
0 comments
linolevan.com
submitted
#0
1 commit
expand
collapse
appview,knotmirror: fix small typos
merge conflicts detected
expand
collapse
expand
collapse
- appview/pages/templates/user/fragments/vouchPopover.html:37
- appview/repo/branches.go:77
- knotmirror/xrpc/git_get_blob.go:95