s/rtfeldman/roc-lang/g in links to GitHub repos

This commit is contained in:
Richard Feldman 2022-08-12 15:24:09 -04:00
parent af8a81de9f
commit 97e2900bf5
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B
84 changed files with 174 additions and 174 deletions

View file

@ -183,7 +183,7 @@ impl<'a> LowLevelCall<'a> {
/// Wrap an integer that should have less than 32 bits, but is represented in Wasm as i32.
/// This may seem like deliberately introducing an error!
/// But we want all targets to behave the same, and hash algos rely on wrapping.
/// Discussion: https://github.com/rtfeldman/roc/pull/2117#discussion_r760723063
/// Discussion: https://github.com/roc-lang/roc/pull/2117#discussion_r760723063
fn wrap_small_int(&self, backend: &mut WasmBackend<'a>, int_width: IntWidth) {
let bits = 8 * int_width.stack_size() as i32;
let shift = 32 - bits;