Jelajahi Sumber

Fixed documentation, count is now a property and not a method.

Marco Bambini 8 tahun lalu
induk
melakukan
ebf65c0b15
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      docs/functions.html

+ 1 - 1
docs/functions.html

@@ -146,7 +146,7 @@
 	// sum modified to accept a variable number of arguments
 	func sum() {
 		var tot = 0;
-		for (var i in 0..<_args.count()) {
+		for (var i in 0..<_args.count) {
 			tot += _args[i];
 		}
 		return tot;