Skip to content

Commit 2064099

Browse files
luzpazjelly
authored andcommitted
Fix typos
1 parent 6720907 commit 2064099

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Archweb provides multiple management commands for importing various sorts of dat
131131
* reporead_inotify - Watches a templated patch for updates of *.files.tar.gz to update Arch databases with.
132132
* donor_import - Import a single donator from a mail passed to stdin
133133
* mirrorcheck - Poll every active mirror URLs to store the lastsnyc time and record network timing details.
134-
* mirrorresolv - Poll every active mirror URLs and determine wheteher they have IP4 and/or IPv6 addresses.
134+
* mirrorresolv - Poll every active mirror URLs and determine whether they have IP4 and/or IPv6 addresses.
135135
* populate_signoffs - retrieves the latest commit message of a signoff-eligible package.
136136
* update_planet - Import all feeds for users who have a valid website and website_rss in their user profile.
137137
* read_links - Reads a repo.links.db.tar.gz file and updates the Soname model.

main/templatetags/pgp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def format_key(key_id):
1010
if len(key_id) in (8, 20):
1111
return '0x%s' % key_id
1212
elif len(key_id) == 40:
13-
# normal display format is 5 groups of 4 hex chars seperated by spaces,
13+
# normal display format is 5 groups of 4 hex chars separated by spaces,
1414
# double space, then 5 more groups of 4 hex chars
1515
split = tuple(key_id[i:i + 4] for i in range(0, 40, 4))
1616
return '%s\u00a0 %s' % (' '.join(split[0:5]), ' '.join(split[5:10]))

mirrors/tests/test_mirrorurl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_mirrorurl_get_full_url(mirrorurl):
2727

2828
def test_mirror_url_clean(mirrorurl):
2929
mirrorurl.clean()
30-
# TOOD(jelle): this expects HOSTNAME to resolve, maybe mock
30+
# TODO(jelle): this expects HOSTNAME to resolve, maybe mock
3131
assert mirrorurl.has_ipv4
3232
# requires ipv6 on host... mock?
3333
# assert mirrorurl.has_ipv6 == True

0 commit comments

Comments
 (0)