Skip to content

Commit 67da1bd

Browse files
committed
Fix sample comments
1 parent 5b438ea commit 67da1bd

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Samples/Tutorials/Projections/Chef.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) Dolittle. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3-
// Sample code for the tutorial at https://dolittle.io/tutorials/getting-started/projections/
3+
// Sample code for the tutorial at https://dolittle.io/docs/tutorials/projections/
44

55
export class Chef {
66
constructor(

Samples/Tutorials/Projections/DishCounter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export class DishCounter {
1010
numberOfTimesPrepared: number = 0;
1111

1212
@on(DishPrepared, _ => _.keyFromProperty('Dish'))
13-
dishPrepared(event: DishPrepared, projectionContext: ProjectionContext) {
13+
on(event: DishPrepared, projectionContext: ProjectionContext) {
1414
this.numberOfTimesPrepared ++;
1515
}
16-
}
16+
}

Samples/Tutorials/Projections/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) Dolittle. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3-
// Sample code for the tutorial at https://dolittle.io/tutorials/projections/typescript/
3+
// Sample code for the tutorial at https://dolittle.io/docs/tutorials/projections/
44

55
import { Client } from '@dolittle/sdk';
66
import { TenantId } from '@dolittle/sdk.execution';

0 commit comments

Comments
 (0)