Skip to content

Commit

Permalink
Add missing :
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Eifert committed Apr 28, 2022
1 parent 7993024 commit 303b028
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ be found at [https://hexdocs.pm/{{#underscored}}{{packageName}}{{/underscored}}]

You can override the URL of your server (e.g. if you have a separate development and production server in your configuration files.
```elixir
config {{#underscored}}{{appName}}{{/underscored}}, base_url: "{{{basePath}}}"
config :{{#underscored}}{{appName}}{{/underscored}}, base_url: "{{{basePath}}}"
```
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use Mix.Config
# config :logger, level: :info
#

config {{#underscored}}{{appName}}{{/underscored}}, base_url: "{{{basePath}}}"
config :{{#underscored}}{{appName}}{{/underscored}}, base_url: "{{{basePath}}}"

# It is also possible to import configuration files, relative to this
# directory. For example, you can emulate configuration per environment
Expand Down
2 changes: 1 addition & 1 deletion samples/client/petstore/elixir/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ be found at [https://hexdocs.pm/openapi_petstore](https://hexdocs.pm/openapi_pet

You can override the URL of your server (e.g. if you have a separate development and production server in your configuration files.
```elixir
config open_api_petstore, base_url: "http://petstore.swagger.io:80/v2"
config :open_api_petstore, base_url: "http://petstore.swagger.io:80/v2"
```
2 changes: 1 addition & 1 deletion samples/client/petstore/elixir/config/config.exs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use Mix.Config
# config :logger, level: :info
#

config open_api_petstore, base_url: "http://petstore.swagger.io:80/v2"
config :open_api_petstore, base_url: "http://petstore.swagger.io:80/v2"

# It is also possible to import configuration files, relative to this
# directory. For example, you can emulate configuration per environment
Expand Down

0 comments on commit 303b028

Please sign in to comment.