This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 0efdfb15 docs: fix typos in code comments (#295)
0efdfb15 is described below
commit 0efdfb15f722d9f1056fad60330d1e57c79e2f67
Author: John Bampton <[email protected]>
AuthorDate: Mon Mar 16 22:03:30 2026 +1000
docs: fix typos in code comments (#295)
General clean up
---
lib/whimsy/asf/board.rb | 2 +-
tools/namemap.rb | 2 +-
www/members/check_invitations.cgi | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/whimsy/asf/board.rb b/lib/whimsy/asf/board.rb
index 18e43940..17962f55 100644
--- a/lib/whimsy/asf/board.rb
+++ b/lib/whimsy/asf/board.rb
@@ -88,7 +88,7 @@ module ASF
# Params:
# quarterdates - hash from nextQuarter
# schedule - list of report months (e.g. ["February", "May", "August",
"November"])
- # possibly preceeded by 'Next month: ...'
+ # possibly preceded by 'Next month: ...'
# or 'Every month'
# Returns: the next date
def self.nextReport(quarterdates, schedule)
diff --git a/tools/namemap.rb b/tools/namemap.rb
index 5bd8ae4e..8c55d6d5 100644
--- a/tools/namemap.rb
+++ b/tools/namemap.rb
@@ -21,7 +21,7 @@ puts 'DANGER, WILL ROBINSON! THIS IS NOT READY FOR PRODUCTION
USE!'
# Note: emails may not be unique across accounts on either side
# Need to manually investigate, since may involve multiple
people/accounts
# DIFF: an email address matched, but the IDs did not
-# Manually invesigate to see why
+# Manually investigate to see why
# NOTE: You *must* manually evaluate the results!
module NameMap
extend self
diff --git a/www/members/check_invitations.cgi
b/www/members/check_invitations.cgi
index 28a1c2db..fd978898 100755
--- a/www/members/check_invitations.cgi
+++ b/www/members/check_invitations.cgi
@@ -132,7 +132,7 @@ def setup_data
end
notinvited.each do |id, v|
- # na_emails entries only exist for non-commiters
+ # na_emails entries only exist for non-committers
mails = na_emails[id] || ASF::Person.new(id).all_mail
v[:invited] = match_person(invites, id, v[:name], mails)
v[:replied] = match_person(replies, id, v[:name], mails)
@@ -141,7 +141,7 @@ def setup_data
notapplied.each do |record|
id = record[:id]
name = record[:name]
- # na_emails entries only exist for non-commiters
+ # na_emails entries only exist for non-committers
mails = na_emails[id] || ASF::Person.new(id).all_mail
record[:replied] = match_person(replies, id, name, mails)
record[:invited] = match_person(invites, id, name, mails)