Skip to content

Commit 514e818

Browse files
authored
Fix typos and word casing (#292)
1 parent 261efcb commit 514e818

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

DEPLOYMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The following additional steps are required to get a new Whimsy VM up
8181
and running - these are only needed for a new deployment.
8282

8383
* Ensure that the IP address is static, and has been added to the list of allowed mail relays
84-
* check that the Puppet node yaml file has the appropriate version settings for ruby, gems and passenger. This may require trial and error.
84+
* check that the Puppet node YAML file has the appropriate version settings for ruby, gems and passenger. This may require trial and error.
8585
* Optionally set up an initial SSL certificate just for the new node, i.e. excluding whimsy.apache.org. This is to allow for initial testing.
8686
* run `certbot certonly` from root, select option (2) - standalone.
8787
* restart apache

tools/parsemail.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def self.parse_dir(maildir, yamlfile)
4646
ytime = Time.at(0)
4747
end
4848
dtime = File.mtime(maildir) # must exist
49-
if ytime > dtime + 60 # Allow for yaml update window
49+
if ytime > dtime + 60 # Allow for YAML update window
5050
log :INFO, "No change to #{maildir} (#{dtime}) since #{yamlfile} (#{ytime}), skipping"
5151
return
5252
else

tools/vhosttest.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# Allow override of local repo
1212
IP = ARGV.shift or raise RuntimeError.new 'Need path to infrastructure puppet checkout'
13-
# Allow override of yaml name
13+
# Allow override of YAML name
1414
base = ARGV.shift || 'whimsy-vm*'
1515
yaml = Dir["#{IP}/data/nodes/#{base}.apache.org.yaml"].
1616
max_by {|path| path[/-vm(\d+)/, 1].to_i}

www/roster/views/ppmc_new.html.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
_script src: "app.js?#{appmtime}"
2222
_.render '#main', timeout: 1 do
2323
_PPMCNew auth: @auth, pmcsAndBoard: @pmcsAndBoard,
24-
officersAndMemers: @officersAndMembers, ipmc: @ipmc
24+
officersAndMembers: @officersAndMembers, ipmc: @ipmc
2525
end
2626
end
2727
end

www/secretary/workbench/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ task :server => :bundle do
6363
require 'wunderbar/listen'
6464
end
6565

66-
desc 'remove all parsed yaml files'
66+
desc 'remove all parsed YAML files'
6767
task :clean do
6868
rm_rf Dir["#{ARCHIVE}/*.yml"]
6969
end

www/secretary/workbench/models/mailbox.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def each(&block)
158158
end
159159

160160
#
161-
# name of associated yaml file
161+
# name of associated YAML file
162162
#
163163
def yaml_file
164164
File.join ARCHIVE, "#{@name}.yml"

www/test/local_paths.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
RECEIVED = File.absolute_path('work/svn/received')
2525

26-
# define pending yaml files
26+
# define pending YAML files
2727
PENDING_YML = File.join(RECEIVED, 'pending.yml')
2828
COMPLETED_YML = File.join(RECEIVED, 'completed.yml')
2929

0 commit comments

Comments
 (0)