Skip to content

Commit b88544a

Browse files
mauromattos00AndrewKushnir
authored andcommitted
docs(docs-infra): add missing decorator in tutorial step
1 parent 4eff4d3 commit b88544a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aio/content/examples/getting-started/src/app/cart.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// #docregion import-http
2-
import { Injectable } from '@angular/core';
32
import { HttpClient } from '@angular/common/http';
43
// #docregion props
54
import { Product } from './products';
5+
import { Injectable } from '@angular/core';
66
// #enddocregion props, import-http
77

8+
// #docregion props, methods, inject-http, get-shipping
89
@Injectable({
910
providedIn: 'root'
1011
})
11-
// #docregion props, methods, inject-http, get-shipping
1212
export class CartService {
1313
// #enddocregion get-shipping
1414
items: Product[] = [];

0 commit comments

Comments
 (0)