Skip to content

Commit

Permalink
fix(docs): Executes method name (#1422)
Browse files Browse the repository at this point in the history
  • Loading branch information
PieEatingNinjas committed Sep 17, 2024
1 parent 558a89c commit 9267436
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/02-fundamentals/05-targets.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ class Build : NukeBuild
// highlight-start
.OnlyWhenDynamic(() => Data.Any())
// highlight-end
.Execute(() => { });
.Executes(() => { });
}
```

Expand All @@ -229,7 +229,7 @@ class Build : NukeBuild
.WhenSkipped(DependencyBehavior.Execute)
// highlight-end
.DependsOn(A)
.Execute(() => { });
.Executes(() => { });
}
```

Expand Down Expand Up @@ -286,7 +286,7 @@ class Build : NukeBuild

Target B => _ => _
.DependsOn(A)
.Execute(() => { });
.Executes(() => { });
}
```

Expand All @@ -309,7 +309,7 @@ class Build : NukeBuild
.AssuredAfterFailure()
// highlight-end
.DependsOn(A)
.Execute(() => { });
.Executes(() => { });
}
```

Expand Down

0 comments on commit 9267436

Please sign in to comment.