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

Fixing typos

Solving issue#26.
//Requres was written instead of //Requires, which was generating a "warning: free variables in primitive code "bigstringaf_memcmp_string" (/home/ziat/.opam/4.07.0/lib/bigstringaf/runtime.js:67)".

authored by

ghiles and committed by
GitHub
bf69c850 13f96f79

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