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 f264c54a Fix spelling in Ruby files (#215)
f264c54a is described below
commit f264c54a7ca156d7010502bd309ba19b1e65f779
Author: John Bampton <[email protected]>
AuthorDate: Sat Mar 23 22:43:15 2024 +1000
Fix spelling in Ruby files (#215)
---
lib/whimsy/asf/svn.rb | 2 +-
tools/pubsub-ci-email.rb | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/whimsy/asf/svn.rb b/lib/whimsy/asf/svn.rb
index 9f3396a5..de211b31 100644
--- a/lib/whimsy/asf/svn.rb
+++ b/lib/whimsy/asf/svn.rb
@@ -480,7 +480,7 @@ module ASF
out
end
- # get list of commmits from initial to current, and parses the output
+ # get list of commits from initial to current, and parses the output
# Returns: [out, err], where:
# out = array of entries, each of which is a hash
# err = error message (in which case out is nil)
diff --git a/tools/pubsub-ci-email.rb b/tools/pubsub-ci-email.rb
index 61ce7889..9d810758 100755
--- a/tools/pubsub-ci-email.rb
+++ b/tools/pubsub-ci-email.rb
@@ -194,7 +194,7 @@ def do_diff(initialhash, currenthash, triggerrev)
mail = Mail.new do
from "#{currentcommittername} <#{currentcommitter}@apache.org>"
sender "[email protected]"
- # to to # Intial testing, only use Bcc
+ # to to # Initial testing, only use Bcc
bcc '[email protected]' # keep track of mails
subject subject
body body
@@ -210,7 +210,7 @@ def handle_change(revision)
begin
previous_revision = File.read(PREVIOUS_REVISION).chomp
puts stamp "Detected last known revision '#{previous_revision}'"
- # get list of commmits from initial to current.
+ # get list of commits from initial to current.
# @return array of entries, each of which is an array of [commitid,
committer, datestamp]
out,_ = ASF::SVN.svn_commits!(SOURCE_URL, previous_revision, revision)
commits = out.size - 1