Преглед на файлове

neko.vm.Gc.hx full stops

+ class description
Mark Knol преди 10 години
родител
ревизия
f02fc4f9eb
променени са 1 файла, в които са добавени 5 реда и са изтрити 1 реда
  1. 5 1
      std/neko/vm/Gc.hx

+ 5 - 1
std/neko/vm/Gc.hx

@@ -21,6 +21,9 @@
  */
 package neko.vm;
 
+/**
+	Neko garbage collector utility.
+*/
 class Gc {
 	/**
 		Run the Neko garbage collector.
@@ -30,7 +33,8 @@ class Gc {
 	}
 
 	/**
-		Return the size of the GC heap and the among of free space, in bytes
+		Return the size of the GC heap and the among of free space, 
+		in bytes.
 	*/
 	public static function stats() : { heap : Int, free : Int } {
 		return _stats();