Skip to content

Commit d6e0c6b

Browse files
authored
Update analysistask.md
1 parent f462e45 commit d6e0c6b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/tutorials/analysistask.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ using namespace o2::framework;
5050
```
5151
5252
```note
53-
ALl tables of the ALICE O2 analysis data model reside in the namespace o2::aod. Thus e.g. the full specifier of the table Tracks is o2::aod::Tracks. Within the namespace o2 this hence becomes aod::Tracks.
53+
All tables of the ALICE O2 analysis data model reside in the namespace o2::aod. Thus e.g. the full specifier of the table Tracks is o2::aod::Tracks. Within the namespace o2 this hence becomes aod::Tracks.
5454
```
5555

5656
## Tasks, workflows, data analysis
@@ -94,8 +94,8 @@ struct BTask {
9494
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
9595
{
9696
return WorkflowSpec{
97-
adaptAnalysisTask<ATask>(cfgc, TaskName{"rask_A"}),
98-
adaptAnalysisTask<BTask>(cfgc, TaskName{"task_B"}),
97+
adaptAnalysisTask<ATask>(cfgc),
98+
adaptAnalysisTask<BTask>(cfgc),
9999
};
100100
}
101101
```

0 commit comments

Comments
 (0)