Inform with the Paragraph Element Typo

Actual issue is a found typo.

Text is as follows:
Create a p element below your h2 element, and give it the text "Hello Paragraph".

Text should be as follows:
Create a p element below your h2 element, and give it the text "Hello Paragraph."

Unsure of who to notify.

Your code so far


<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>Hello Paragraph.</p>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36.

Link to the challenge:
learn. freecodecamp. org/ responsive-web-design/basic-html-and-html5/inform-with-the-paragraph-element

This isn’t a typo. The challenge is written to be forgiving and accept the code that you entered, but it is correct without the period after “Hello Paragraph”. The most correct way to solve this problem would be

<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>Hello Paragraph</p>