Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

Correct typo

Co-authored-by: Andrey <ankddev@duck.com>

+7 -7
+1 -1
compiler-core/src/type_/tests/snapshots/gleam_core__type___tests__use___just_use_in_fn_body.snap
··· 22 22 23 23 A use expression must always be followed by at least one expression. 24 24 25 - A todo expression has been use in place of the missing code, so 25 + A todo expression has been used in place of the missing code, so 26 26 this code will crash if it is run. Be sure to finish it before 27 27 running your program.
+1 -1
compiler-core/src/type_/tests/snapshots/gleam_core__type___tests__use___no_callback_body.snap
··· 19 19 20 20 A use expression must always be followed by at least one expression. 21 21 22 - A todo expression has been use in place of the missing code, so 22 + A todo expression has been used in place of the missing code, so 23 23 this code will crash if it is run. Be sure to finish it before 24 24 running your program.
+1 -1
compiler-core/src/type_/tests/snapshots/gleam_core__type___tests__warnings__empty_func_warning_test.snap
··· 16 16 17 17 A function must always have an implementation. 18 18 19 - A todo expression has been use in place of the missing body, 19 + A todo expression has been used in place of the missing body, 20 20 so this code will crash if it is run. Be sure to finish it before 21 21 running your program.
+1 -1
compiler-core/src/type_/tests/snapshots/gleam_core__type___tests__warnings__incomplete_code_block_raises_warning.snap
··· 18 18 19 19 A block must always contain at least one expression. 20 20 21 - A todo expression has been use in place of the missing code, 21 + A todo expression has been used in place of the missing code, 22 22 so this code will crash if it is run. Be sure to finish it before 23 23 running your program.
+3 -3
compiler-core/src/warning.rs
··· 453 453 let text = "\ 454 454 A block must always contain at least one expression. 455 455 456 - A todo expression has been use in place of the missing code, 456 + A todo expression has been used in place of the missing code, 457 457 so this code will crash if it is run. Be sure to finish it before 458 458 running your program."; 459 459 ("Incomplete block", text) ··· 462 462 let text = "\ 463 463 A function must always have an implementation. 464 464 465 - A todo expression has been use in place of the missing body, 465 + A todo expression has been used in place of the missing body, 466 466 so this code will crash if it is run. Be sure to finish it before 467 467 running your program."; 468 468 ("Unimplemented function", text) ··· 471 471 let text = "\ 472 472 A use expression must always be followed by at least one expression. 473 473 474 - A todo expression has been use in place of the missing code, so 474 + A todo expression has been used in place of the missing code, so 475 475 this code will crash if it is run. Be sure to finish it before 476 476 running your program."; 477 477 ("Incomplete use expression", text)