added semi colons they were missing at the end of some examples

This commit is contained in:
Jordan Turner
2021-12-15 22:15:29 -07:00
parent db9b0a8ec8
commit e1e032b61f
6 changed files with 7 additions and 7 deletions

View File

@@ -3713,7 +3713,7 @@ interface Stanek {
* // Basic ns functions can be used directly
* methodName();
* // Some related functions are gathered within a common namespace
* property.methodName()
* property.methodName();
* ```
* {@link https://bitburner.readthedocs.io/en/latest/netscript/netscript1.html| ns1 in-game docs}
* <hr>
@@ -3723,7 +3723,7 @@ interface Stanek {
* // Basic ns functions can be accessed on the ns object
* await ns.methodName;
* // Some related functions are gathered under a sub-property of the ns object
* await ns.property.methodName
* await ns.property.methodName;
* }
* ```
* {@link https://bitburner.readthedocs.io/en/latest/netscript/netscriptjs.html| ns2 in-game docs}