The unpac monorepo manager self-hosting as a monorepo using unpac

Merge pull request #28 from ghilesZ/patch-1

Fixing typos

authored by

Spiros Eliopoulos and committed by
GitHub
3d72e9bd 741dfdfe

+2 -2
+2 -2
vendor/opam/bigstringaf/lib/runtime.js
··· 56 } 57 58 //Provides: bigstringaf_memcmp_bigstring 59 - //Requres: caml_ba_get_1, caml_int_compare 60 function bigstringaf_memcmp_bigstring(ba1, ba1_off, ba2, ba2_off, len) { 61 for (var i = 0; i < len; i++) { 62 var c = caml_int_compare(caml_ba_get_1(ba1, ba1_off + i), caml_ba_get_1(ba2, ba2_off + i)); ··· 66 } 67 68 //Provides: bigstringaf_memcmp_string 69 - //Requres: caml_ba_get_1, caml_int_compare, caml_string_unsafe_get 70 function bigstringaf_memcmp_string(ba, ba_off, str, str_off, len) { 71 for (var i = 0; i < len; i++) { 72 var c = caml_int_compare(caml_ba_get_1(ba, ba_off + i), caml_string_unsafe_get(str, str_off + i));
··· 56 } 57 58 //Provides: bigstringaf_memcmp_bigstring 59 + //Requires: caml_ba_get_1, caml_int_compare 60 function bigstringaf_memcmp_bigstring(ba1, ba1_off, ba2, ba2_off, len) { 61 for (var i = 0; i < len; i++) { 62 var c = caml_int_compare(caml_ba_get_1(ba1, ba1_off + i), caml_ba_get_1(ba2, ba2_off + i)); ··· 66 } 67 68 //Provides: bigstringaf_memcmp_string 69 + //Requires: caml_ba_get_1, caml_int_compare, caml_string_unsafe_get 70 function bigstringaf_memcmp_string(ba, ba_off, str, str_off, len) { 71 for (var i = 0; i < len; i++) { 72 var c = caml_int_compare(caml_ba_get_1(ba, ba_off + i), caml_string_unsafe_get(str, str_off + i));