Skip to content

Commit 4499fcf

Browse files
committed
fix XML param in adapter template
1 parent 50dfbb6 commit 4499fcf

File tree

1 file changed

+1
-1
lines changed
  • third_party/dotnet/devtools/src/generator/Templates

1 file changed

+1
-1
lines changed

third_party/dotnet/devtools/src/generator/Templates/domain.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace {{rootNamespace}}.{{domain.Name}}
1919
/// Initializes a new instance of the {{dehumanize domain.Name}}Adapter class.
2020
/// </summary>
2121
/// <param name="session">The IDevToolsSession to be used with this adapter.</param>
22-
/// <exception cref="ArgumentNullException">If <paramref="session"/> is <see langword="null"/>.</exception>
22+
/// <exception cref="ArgumentNullException">If <paramref name="session"/> is <see langword="null"/>.</exception>
2323
public {{dehumanize domain.Name}}Adapter(IDevToolsSession session)
2424
{
2525
Session = session ?? throw new ArgumentNullException(nameof(session));

0 commit comments

Comments
 (0)