Skip to content

Commit

Permalink
Fix spelling (#195)
Browse files Browse the repository at this point in the history
* Fix spelling
  • Loading branch information
jbampton committed Nov 27, 2023
1 parent 9816fce commit 67b80d7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/whimsy/asf/ldap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def self.memberids

# Superclass for all classes which are backed by LDAP data. Encapsulates
# the management of collections to weak references to instance data, for
# both performance and funcational reasons. Sequentially finding the same
# both performance and functional reasons. Sequentially finding the same
# same object will return the same instance unless the prior instance has
# been reclaimed by garbage collection. This often prevents large numbers
# of requests to fetch the same data from LDAP.
Expand Down
2 changes: 1 addition & 1 deletion lib/whimsy/asf/meeting-util.rb
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def self.getProxyNominees(mtg_dir=nil)
end.uniq
end

# Get info about current users's proxying
# Get proxy info for current user
# @return "help text", ["id | name (proxy)", ...] if they are a proxy for other(s)
# @return "You have already submitted a proxy form" to someone else
# @return nil otherwise
Expand Down
2 changes: 1 addition & 1 deletion www/board/agenda/views/models/pending.js.rb
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def self.find_status(action)
return match
end

# determine if offline operatios are (or should be) supported
# determine if offline operations are (or should be) supported
def self.offline_enabled
return false unless PageCache.enabled

Expand Down
2 changes: 1 addition & 1 deletion www/test.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ print "Content-type: text/plain; charset=UTF-8\r\n\r\n"

ENV.sort.each do |k,v|
if k.eql? 'HTTP_AUTHORIZATION'
# cannot use sub! because value is fozen
# cannot use sub! because value is frozen
# redact non-empty string
if v and not v.empty?
v = '<redacted>'
Expand Down

0 comments on commit 67b80d7

Please sign in to comment.