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

Fixing typo: paramter -> parameter #1159

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ Use this option to control how the Operation listing is displayed. It can be set

#### SupportedSubmitMethods ####

Specify which HTTP operations will have the 'Try it out!' option. An empty paramter list disables it for all operations.
Specify which HTTP operations will have the 'Try it out!' option. An empty parameter list disables it for all operations.

### Provide your own "index" file ###

Expand Down
4 changes: 2 additions & 2 deletions Swashbuckle.Dummy.Core/App_Start/SwaggerConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public static void Register(HttpConfiguration httpConfig)
//
c.DocExpansion(DocExpansion.List);

// Specify which HTTP operations will have the 'Try it out!' option. An empty paramter list disables
// Specify which HTTP operations will have the 'Try it out!' option. An empty parameter list disables
// it for all operations.
//
//c.SupportedSubmitMethods("GET", "HEAD");
Expand Down Expand Up @@ -278,4 +278,4 @@ public static bool ResolveVersionSupportByRouteConstraint(ApiDescription apiDesc
: versionConstraint.Pattern.Split('|').Contains(targetApiVersion);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
//
//c.DocExpansion(DocExpansion.List);

// Specify which HTTP operations will have the 'Try it out!' option. An empty paramter list disables
// Specify which HTTP operations will have the 'Try it out!' option. An empty parameter list disables
// it for all operations.
//
//c.SupportedSubmitMethods("GET", "HEAD");
Expand Down