Skip to content

Commit 1b17a94

Browse files
committed
Fix quotes for string
1 parent e27e5b6 commit 1b17a94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Templates/CSharp/Requests/EntityClient.cs.tt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ namespace <#=entityContainer.Namespace.GetNamespaceName()#>
2222
public <#=clientName#>(
2323
IAuthenticationProvider authenticationProvider,
2424
IHttpProvider httpProvider = null)
25-
: this(<#=ConfigurationService.Settings.DefaultBaseEndpointUrl#>, authenticationProvider, httpProvider)
25+
: this("<#=ConfigurationService.Settings.DefaultBaseEndpointUrl#>", authenticationProvider, httpProvider)
2626
{
2727
}
2828

2929
/// <summary>
3030
/// Instantiates a new <#=clientName#>.
3131
/// </summary>
32-
/// <param name="baseUrl">The base service URL. For example, "<#=ConfigurationService.Settings.DefaultBaseEndpointUrl#>"</param>
32+
/// <param name="baseUrl">The base service URL. For example, "<#=ConfigurationService.Settings.DefaultBaseEndpointUrl#>".</param>
3333
/// <param name="authenticationProvider">The <see cref="IAuthenticationProvider"/> for authenticating request messages.</param>
3434
/// <param name="httpProvider">The <see cref="IHttpProvider"/> for sending requests.</param>
3535
public <#=clientName#>(

0 commit comments

Comments
 (0)