Skip to content

Commit affc947

Browse files
committed
Fix unclosed <p> tag
Fix unclosed <p> tag
1 parent d2e6c85 commit affc947

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sections/communication/ipc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h3>The <code>ipc</code> (inter-process communication) module allows you to send
2323
<button class="demo-button" id="async-msg">Ping</button>
2424
<span class="demo-response" id="async-reply"></span>
2525
</div>
26-
<p>Using <code>ipc</code> to send messages between processes asynchronously is the preferred method since it will return when finished without blocking other operations in the same process.
26+
<p>Using <code>ipc</code> to send messages between processes asynchronously is the preferred method since it will return when finished without blocking other operations in the same process.</p>
2727

2828
<p>This example sends a "ping" from this process (renderer) to the main process. The main process then replies with "pong".</p>
2929
<h5>Renderer Process</h5>

0 commit comments

Comments
 (0)