Skip to content

Commit

Permalink
Fixed README.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
aratomo-arazon committed Jan 13, 2019
1 parent 443c272 commit 26c2316
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
WFLite
=====
WFLite is a light-weight workflow library.
WFLite is a lightweight workflow library.

## Why workflow?

Expand Down Expand Up @@ -156,7 +156,7 @@ You can create custom asynchronous Activities by inheriting the `AsyncActivity`
{
public IVariable SrcFilePath { private get; set; }
public IVariable DstFilePath { private get; set; }
protected sealed override async Task<bool> run(CancellationToken cancellationToken)
protected sealed override async Task<</>bool> run(CancellationToken cancellationToken)
{
var srcFilePath = Convert.ToString(SrcFilePath.GetValue());
var dstFilePath = Convert.ToString(DstFilePath.GetValue());
Expand Down Expand Up @@ -280,4 +280,4 @@ Inheriting `DelegateActivity` allows you to group Activities as a reusable unit.

## Author

[Tomoharu Araki (aratomo-arazon)](https://github.com/aratomo-arazon)
[aratomo-arazon](https://github.com/aratomo-arazon)

0 comments on commit 26c2316

Please sign in to comment.