Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Found via `codespell -S ./priv/gettext -L vew`
  • Loading branch information
kianmeng committed Jan 24, 2024
1 parent 29b74cd commit 2452917
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ assignees: ''

## Platform Information
<!--
* The browswer name, version, and operating system you're accessing the store from
* The browser name, version, and operating system you're accessing the store from
-->


Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN mix phx.gen.release
RUN mix release

# Dockerfile
# Runing in production
# Running in production

FROM elixir:1.15.7-alpine as release

Expand Down
2 changes: 1 addition & 1 deletion config/runtime.exs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ if config_env() == :prod do
if String.starts_with?(stripe_public_key, "sk_") do
raise """
environment variable STRIPE_PUBLIC_KEY starts with sk_.
This indicates you accidently put your secret key instead.
This indicates you accidentally put your secret key instead.
Please double check to ensure you don't leak secret credentials.
"""
end
Expand Down
2 changes: 1 addition & 1 deletion lib/store_web/controllers/webhook/printful_controller.ex
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ defmodule Elementary.StoreWeb.Webhook.PrintfulController do
end

def handle_event(%{"type" => type}) when type in ["product_synced", "product_updated"] do
# This shoudl clear cache, but it was breaking the site due to how fast
# This should clear cache, but it was breaking the site due to how fast
# it was being called, filling up the API quota.
# Printful.Cache.flush()
# Elementary.Store.Catalog.get_products()
Expand Down

0 comments on commit 2452917

Please sign in to comment.