Fix typos

This commit is contained in:
schmelczerandras 2020-11-02 10:08:35 +01:00
parent 55eb0cf0d2
commit 5b37f4bcd4
8 changed files with 25 additions and 26 deletions

View file

@ -47,7 +47,7 @@ export interface Renderer {
/**
* The inverse of `displayToWorldCoordinates`, returns the screen space position
* of a point given in world space cooridnates.
* of a point given in world space coordinates.
*
* While the origin for worldCoordinates resides in the bottom-left corner,
* the origin of the returned display coordinates is placed in the top left.
@ -89,10 +89,9 @@ export interface Renderer {
/**
* Get useful information about the hardware and the SDF2D renderer.
*
* Its sheme is subject to change.
* Its scheme is subject to change.
*
* During context lost it might be null.
*
*/
readonly insights: RendererInfo | null;
}