Skip to content

Commit 7625eb0

Browse files
committedNov 12, 2013
Some doc cleanup
1 parent 761c1d5 commit 7625eb0

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed
 

‎opal/core/runtime.js

+10-4
Original file line numberDiff line numberDiff line change
@@ -776,10 +776,12 @@
776776
return hash;
777777
};
778778

779-
// hash2 is a faster creator for hashes that just use symbols and
780-
// strings as keys. The map and keys array can be constructed at
781-
// compile time, so they are just added here by the constructor
782-
// function
779+
/*
780+
* hash2 is a faster creator for hashes that just use symbols and
781+
* strings as keys. The map and keys array can be constructed at
782+
* compile time, so they are just added here by the constructor
783+
* function
784+
*/
783785
Opal.hash2 = function(keys, map) {
784786
var hash = new Opal.Hash._alloc;
785787

@@ -789,6 +791,10 @@
789791
return hash;
790792
};
791793

794+
/*
795+
* Create a new range instance with first and last values, and whether the
796+
* range excludes the last value.
797+
*/
792798
Opal.range = function(first, last, exc) {
793799
var range = new Opal.Range._alloc;
794800
range.begin = first;

0 commit comments

Comments
 (0)
Please sign in to comment.