Skip to content

Commit 9e6af22

Browse files
Merge pull request #1369 from wangsai/master
docs(): add missing <tr> close tag and close <img> tag properly
2 parents 3135258 + e7c0019 commit 9e6af22

File tree

2 files changed

+21
-20
lines changed

2 files changed

+21
-20
lines changed

content/enterprise.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ With official support, get expert help directly from the NestJS core team. We ta
2121
</p>
2222
</div>
2323
<div class="thumbnail p-l-30">
24-
<img src="/assets/enterprise/help.svg">
24+
<img src="/assets/enterprise/help.svg" />
2525
</div>
2626
</div>
2727

2828
<div class="row">
2929
<div class="thumbnail p-r-30">
30-
<img src="/assets/enterprise/contact.svg">
30+
<img src="/assets/enterprise/contact.svg" />
3131
</div>
3232
<div class="content">
3333
<h4>NestJS Best Practices</h4>

content/fundamentals/unit-testing.md

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -256,30 +256,31 @@ Each of the override method types, in turn, returns the `TestingModule` instance
256256
The compiled module has several useful methods, as described in the following table:
257257

258258
<table>
259-
<tr>
260-
<td>
261-
<code>createNestApplication()</code>
262-
</td>
263-
<td>
264-
Creates and returns a Nest application (<code>INestApplication</code> instance) based on the given module.
265-
Note that you must manually initialize the application using the <code>init()</code> method.
266-
</td>
267-
</tr>
268-
<tr>
269-
<td>
270-
<code>createNestMicroservice()</code>
271-
</td>
272-
<td>
273-
Creates and returns a Nest microservice (<code>INestMicroservice</code> instance) based on the given module.
274-
</td>
275-
</tr>
276-
<tr>
259+
<tr>
260+
<td>
261+
<code>createNestApplication()</code>
262+
</td>
263+
<td>
264+
Creates and returns a Nest application (<code>INestApplication</code> instance) based on the given module.
265+
Note that you must manually initialize the application using the <code>init()</code> method.
266+
</td>
267+
</tr>
268+
<tr>
269+
<td>
270+
<code>createNestMicroservice()</code>
271+
</td>
272+
<td>
273+
Creates and returns a Nest microservice (<code>INestMicroservice</code> instance) based on the given module.
274+
</td>
275+
</tr>
276+
<tr>
277277
<td>
278278
<code>get()</code>
279279
</td>
280280
<td>
281281
Retrieves a static instance of a controller or provider (including guards, filters, etc.) available in the application context. Inherited from the <a href="/fundamentals/module-ref">module reference</a> class.
282282
</td>
283+
</tr>
283284
<tr>
284285
<td>
285286
<code>resolve()</code>

0 commit comments

Comments
 (0)