On Thu, 23 Jan 2025 at 22:39, <curc...@apache.org> wrote: > > This is an automated email from the ASF dual-hosted git repository. > > curcuru 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 7e9d216a Fix typo comma > 7e9d216a is described below > > commit 7e9d216a79a4f3999a29650656ad6bb025c79fec > Author: Shane Curcuru <a...@shanecurcuru.org> > AuthorDate: Thu Jan 23 17:38:06 2025 -0500 > > Fix typo comma > --- > lib/whimsy/asf/meeting-util.rb | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/whimsy/asf/meeting-util.rb b/lib/whimsy/asf/meeting-util.rb > index dacacd0a..bd7f74c6 100644 > --- a/lib/whimsy/asf/meeting-util.rb > +++ b/lib/whimsy/asf/meeting-util.rb > @@ -430,7 +430,7 @@ module ASF > nominations_close: times['asf-members-nominations-close'], > polls_close: times['asf-members-polls-close'], > meeting_start: times['asf-members'], > - meeting_end: times['asf-members-end'], > + meeting_end: times['asf-members-end']
Ruby ignores trailing commas in structures such as dict and lists. This makes it easier to add and remove entries, as there is no need to change the final entry, and avoids non-changes in commit emails. > } > end > >