Skip to content

Commit 9f7ae13

Browse files
update docs
1 parent dbbb9f1 commit 9f7ae13

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

docs/advanced-techniques.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,6 @@ use guards can either be global or more granular. We only want to apply the
147147
guard to the `reset()` method, so we can use the `@UseGuards()` decorator and
148148
pass the `TestOnlyGuard` as a parameter to it:
149149

150-
a
151-
152150
```ts
153151
@UseGuards(TestEnvOnlyGuard)
154152
@Post('/reset')

docs/crud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ it("should get single mission", () => {
1717
cy.get("@response").its("status").should("equal", 200);
1818
cy.get("@response").its("body").should("include", {
1919
id: 1,
20-
description: "take out the trash",
20+
description: "save the galaxy",
2121
complete: false,
2222
});
2323
});

0 commit comments

Comments
 (0)