Improve doc comments
Rob Mensching committed
Feb 5, 2020 at 15:52 UTC
d7c3d9f9dd644a6348d28b80f41a87ee8a0b497c
2 files changed
+4
-1
src/WixToolset.Extensibility/IResolverExtension.cs
+3
@@ -15,6 +15,9 @@ namespace WixToolset.Extensibility
15
/// </summary>
16
void PreResolve(IResolveContext context);
17
18
+ /// <summary>
19
+ /// Called to attempt to resolve source to a file.
20
+ /// </summary>
21
IResolveFileResult ResolveFile(string source, IntermediateTupleDefinition tupleDefinition, SourceLineNumber sourceLineNumbers, BindStage bindStage);
22
23
/// <summary>
src/WixToolset.Extensibility/Services/IBackendHelper.cs
+1
-1
@@ -15,7 +15,7 @@ namespace WixToolset.Extensibility.Services
15
/// Creates a file transfer and marks it redundant if the source and destination are identical.
16
/// </summary>
17
/// <param name="source">Source for the file transfer.</param>
18
- /// <param name="destination">Destiation for the file transfer.</param>
18
+ /// <param name="destination">Destination for the file transfer.</param>
19
/// <param name="move">Indicates whether to move or copy the source file.</param>
20
IFileTransfer CreateFileTransfer(string source, string destination, bool move, SourceLineNumber sourceLineNumbers = null);
21