Skip to content

Commit

Permalink
Documentational changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RikuVirtanen committed Dec 18, 2023
1 parent 94c99a8 commit 5b7bc73
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Frends.FTP.ListFiles/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.0.1] - 2022-12-18
### Added
- Fixed documentation

## [1.0.0] - 2022-05-18
### Added
- Initial implementation
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<Authors>Frends</Authors>
<Copyright>Frends</Copyright>
<Company>Frends</Company>
Expand Down
2 changes: 1 addition & 1 deletion Frends.FTP.ListFiles/Frends.FTP.ListFiles/ListFiles.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class FTP
/// </summary>
/// <param name="input">Input parameters</param>
/// <param name="cancellationToken">Token to stop task. This is generated by Frends.</param>
/// <returns>List { DateTime Modified, string Name, string FullPath, long SizeBytes }</returns>
/// <returns>Object { List&lt;ListObject&gt; Files { DateTime LastModified, string Name, string FullPath, long SizeBytes } }</returns>
public static async Task<Result> ListFiles([PropertyTab] Input input, CancellationToken cancellationToken)
{
if (string.IsNullOrWhiteSpace(input.Host)) throw new Exception("Host required.");
Expand Down

0 comments on commit 5b7bc73

Please sign in to comment.