Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some typos found by prematurely adding spellr #316

Merged
merged 2 commits into from
Jul 20, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable
# We also clean out system files we don't need to reduce image size:
# * /usr/share/man - manual pages
# * /usr/share/locales - we don't need to support multiple languages at the OS level
# * /var/cache/apt/arhives - we don't need to hold onto deb packages once they're installed
# * /var/cache/apt/archives - we don't need to hold onto deb packages once they're installed
RUN apt-get update -qq &&\
apt-get upgrade -y &&\
apt-get install -y google-chrome-stable libpq-dev nodejs --no-install-recommends &&\
Expand Down
2 changes: 1 addition & 1 deletion README.md.tt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This project follows [Ackama standard branch and environment naming](https://git

TODO: Add columns to the table above if there are resources that are required for that environment e.g. a Redis, ElasticSearch etc.
TODO: If we need to assume role into their AWS account you should mention that here (don't list the role name - leave that in 1Password)
TODO: If there are any unusaual aspects to the deployment of this app you should mention them e.g.
TODO: If there are any unusual aspects to the deployment of this app you should mention them e.g.
* Uses Chef but is controlled by AWS Opsworks
* Gets
TODO: The typical log level for production environments are 'info' - if you are not using 'info' then please document why.
Expand Down
2 changes: 1 addition & 1 deletion config/initializers/content_security_policy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# ###########################
#
# * This example adds the S3 bucket to the `default_src` policy meaning that
# any kind of asset can be loaded from it. You should be more targetted if
# any kind of asset can be loaded from it. You should be more targeted if
# you can e.g. if the bucket is only going to serve images then use
# `policy.img_src` instead.
# * IMPORTANT: you can't just uncomment these lines to make this work - you
Expand Down
2 changes: 1 addition & 1 deletion variants/devise/spec/system/user_sign_in_feature_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
.dig("_rails", "exp")
.to_date

# The remember_me cookie expriy is in UTC timezone so we need to
# The remember_me cookie expiry is in UTC timezone so we need to
# compare it with the date as it is right now in UTC (not in NZ)
today_in_utc = Time.current.utc.to_date

Expand Down
2 changes: 1 addition & 1 deletion variants/devise/spec/system/user_sign_up_feature_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

describe "password validation" do
it "users are informed about the password length requirements" do
# we expect the sign-in page to dispaly a message about password requirements
# we expect the sign-in page to display a message about password requirements
expect(page).to have_text("Password (16 characters minimum)")
end

Expand Down
2 changes: 1 addition & 1 deletion variants/frontend-base/sentry/template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

prepend_to_file "app/frontend/packs/application.js" do
<<~'EO_JS'
// The application.js pack is defered by default which means that nothing imported
// The application.js pack is deferred by default which means that nothing imported
// in this file will begin executing until after the page has loaded. This helps to
// speed up page loading times, especially in apps that have large amounts of js.
//
Expand Down
2 changes: 1 addition & 1 deletion variants/performance/spec/performance_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
RSpec.configure do |config|
# Precompiling assets before running specs with js set to true not only helps
# to speed things up slightly but also creates an environment that we can run
# performance specs against. Without this webpacker doesnt zip the js packs
# performance specs against. Without this webpacker doesn't zip the js packs
# and the performance specs show vastly different results to a live
# environment.
config.before(:suite) do
Expand Down