Mark Sibly 8 gadi atpakaļ
vecāks
revīzija
9829f2bf8d
2 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. 1 1
      modules/mojo/newdocs/app.md
  2. 2 2
      modules/mojo/newdocs/manual.md

+ 1 - 1
modules/mojo/newdocs/app.md

@@ -25,7 +25,7 @@ The app will continue executing the event loop until [[AppInstance.Terminate|App
 
 Subclassing the app Window class is easy - just extend the [[Window]] class.
 
-To render to the window, you will also need to override the [[Window.OnRender]] method. 
+To render to the window, you will also need to override the [[View.OnRender]] method. 
 
 The OnRender method is called when the app needs to be rendered, and is passed a [[Canvas|Canvas]] instance for window rendering code to use.
 

+ 2 - 2
modules/mojo/newdocs/manual.md

@@ -5,14 +5,14 @@
 
 Mojo is a simple, lightweight, application framework optimized for realtime applications such as games.
 
-Mojo includes the folloing namespaces:
+Mojo includes the following namespaces:
 
 | Namespace				| Description
 |:----------------------|:-----------
 | [[mojo.app]]			| Core application framework.
 | [[mojo.graphics]]		| Drawing and rendering.
 | [[mojo.input]]		| Reading user input.
-| [[mojo.audio]]		| Pplaying sounds.
+| [[mojo.audio]]		| Playing sounds and music.
 
 @import app.md
 @import graphics.md