Skip to content

Commit 2e0c85e

Browse files
fix syntax error in health check docs (#2326)
1 parent 8f6ab96 commit 2e0c85e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docs/healthChecks.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,19 @@ module.exports = {
1414
{
1515
label: 'Foo',
1616
healthchecks: [
17-
label: 'bar-installed',
17+
{
18+
label: 'bar-installed',
1819
getDiagnostics: async () => ({
19-
needsToBeFixed: !isBarInstalled()
20+
needsToBeFixed: !isBarInstalled(),
2021
}),
2122
runAutomaticFix: async ({loader}) => {
2223
await installBar();
2324
loader.succeed();
2425
},
25-
}
26+
},
2627
],
28+
},
29+
],
2730
};
2831
```
2932

0 commit comments

Comments
 (0)