Procházet zdrojové kódy

neko.Random.hx full stops

Mark Knol před 10 roky
rodič
revize
aa15a43eaa
1 změnil soubory, kde provedl 5 přidání a 5 odebrání
  1. 5 5
      std/neko/Random.hx

+ 5 - 5
std/neko/Random.hx

@@ -22,35 +22,35 @@
 package neko;
 
 /**
-	A seeded pseudo-random generator
+	A seeded pseudo-random generator.
 */
 class Random {
 
 	var r : Dynamic;
 
 	/**
-		Create a new random with random seed
+		Create a new random with random seed.
 	*/
 	public function new() {
 		r = random_new();
 	}
 
 	/**
-		Set the generator seed
+		Set the generator seed.
 	*/
 	public function setSeed( s : Int ) {
 		random_set_seed(r,s);
 	}
 
 	/**
-		Return a random integer modulo max
+		Return a random integer modulo max.
 	*/
 	public function int( max : Int ) : Int {
 		return random_int(r,max);
 	}
 
 	/**
-		Return a random float
+		Return a random float.
 	*/
 	public function float() : Float {
 		return random_float(r);