fix (curriculum): updated guidelines for the boilerplate text to match with the demo

This commit is contained in:
Hassaan Pasha 2020-03-20 11:08:03 +05:00 committed by Kristofer Koishigawa
parent 8123554e2d
commit 5cdcd62ed9
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@
<li>If the date string is <strong>valid</strong> the api returns a JSON having the structure<br><code>{"unix": &lt;date.getTime()&gt;, "utc" : &lt;date.toUTCString()&gt; }</code><br>
e.g. <code>{"unix": 1479663089000 ,"utc": "Sun, 20 Nov 2016 17:31:29 GMT"}</code></li>
<li>If the date string is <strong>invalid</strong> the api returns a JSON having the structure <br>
<code>{"unix": null, "utc" : "Invalid Date" }</code>. It is what you get from the date manipulation functions used above.
<code>{"error" : "Invalid Date" }</code>.
</li>
</ol>