Skip to content

Commit

Permalink
fix an instance of snake_case whwre it ahouls have been camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
pufferfish101007 committed Aug 27, 2023
1 parent 3f93576 commit 9334062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/targets/wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1289,7 +1289,7 @@ impl From<IrProject> for WebWasmFile {
mathop_log: (n) => Math.log(n) / Math.LN10,
mathop_pow_e: (n) => Math.exp(n),
mathop_pow10: (n) => Math.pow(10, n),
sensing_timer: () => (Date.now() - startTime) / 1000,
sensing_timer: () => (Date.now() - start_time) / 1000,
}},
cast: {{
stringtofloat: parseFloat,
Expand Down

0 comments on commit 9334062

Please sign in to comment.