Skip to content

[elixir] elixir generator failing to compile + invalid references #15075

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ defmodule {{moduleName}}.Connection do
of the function call, will be set as a bearer token in the
`authorization` header.
{{/hasOAuthMethods}}
- `options`: a keyword list of OpenAPIPetstore.Connection.options.
- `options`: a keyword list of {{moduleName}}.Connection.options.

### Returns

Expand Down Expand Up @@ -133,7 +133,7 @@ defmodule {{moduleName}}.Connection do
that returns a bearer token.
- `scopes_or_password`: a list of Strings represenging OAuth2 scopes, or
a single string that is the password for the username provided.
- `options`: a keyword list of OpenAPIPetstore.Connection.options.
- `options`: a keyword list of {{moduleName}}.Connection.options.

### Returns

Expand All @@ -155,7 +155,7 @@ defmodule {{moduleName}}.Connection do
of the function call, will be set as a bearer token in the
`authorization` header.
- `scopes`: a list of Strings represenging OAuth2 scopes.
- `options`: a keyword list of OpenAPIPetstore.Connection.options.
- `options`: a keyword list of {{moduleName}}.Connection.options.

### Returns

Expand All @@ -179,7 +179,7 @@ defmodule {{moduleName}}.Connection do

Tesla.Env.client
"""
@spec new(String.t(), String.t()), options) :: Tesla.Env.client()
@spec new(String.t(), String.t(), options) :: Tesla.Env.client()
{{/hasHttpBasicMethods}}
{{/hasOAuthMethods}}

Expand Down