X-Git-Url: http://www.lcore.org/git/lcore.git/blobdiff_plain/03b75b4c964d8b3ac97d4007f0e033549b01c92f..ffb12fba43635d1d31d7dd073cd4d1ea7d8f4ebd:/lmessages.pas?ds=sidebyside

diff --git a/lmessages.pas b/lmessages.pas
index 3edc463..d5521e5 100644
--- a/lmessages.pas
+++ b/lmessages.pas
@@ -4,7 +4,7 @@
   ----------------------------------------------------------------------------- }
 
 //this unit provides a rough approximation of windows messages on linux
-//it is usefull for multithreaded applications on linux to communicate back to
+//it is useful for multithreaded applications on linux to communicate back to
 //the main lcore thread
 //This unit is *nix only, on windows you should use the real thing
 
@@ -134,7 +134,7 @@ var
   lcorelinkpiperecv : tlasio;
   windows : thashtable;
   //I would rather things crash immediately
-  //if they use an insufficiant size type
+  //if they use an insufficient size type
   //than crash after over four billion
   //windows have been made ;)
   nextwindowhandle : qword = $100000000;
@@ -235,7 +235,7 @@ begin
         //swriteln('duplicate window class registered with different settings');
         raise exception.create('duplicate window class registered with different settings');
       end else begin
-        //swriteln('duplicate window class registered with same settings, tollerated');
+        //swriteln('duplicate window class registered with same settings, tolerated');
       end;
     end else begin
       //swriteln('about to allocate memory for new windowclass');
@@ -292,7 +292,7 @@ begin
     window := twindow(findtree(@windows,inttostr(ahwnd)));
     if window <> nil then begin
       freemem(window.extrawindowmemory);
-      //writeln('aboute to delete window from windows structure');
+      //writeln('about to delete window from windows structure');
       deltree(@windows,inttostr(ahwnd));
       //writeln('deleted window from windows structure');
       windowthreaddata := tthreaddata(findtree(@threaddata,inttostr(taddrint(window.threadid))));