[nostalgia] Fix typo in developer handbook

This commit is contained in:
Gary Talent 2021-10-23 14:20:15 -05:00
parent 4bc3da40b4
commit bb4afd79d5

View File

@ -212,7 +212,7 @@ engine, ```oxThrowError``` is only really useful at the boundary between
engine libraries and Nostalgia Studio. engine libraries and Nostalgia Studio.
```oxIgnoreError``` does what it says, it ignores the error. ```oxIgnoreError``` does what it says, it ignores the error.
Since ```ox::Error```s always nodiscard, you must do something with them. Since ```ox::Error``` is always nodiscard, you must do something with them.
In extremely rare cases, you may not have anything you can do with them or you In extremely rare cases, you may not have anything you can do with them or you
may know the code will never fail in that particular instance. may know the code will never fail in that particular instance.
This should be used very sparingly. This should be used very sparingly.