diff options
| author | Damian Tarnawski <gthetarnav@gmail.com> | 2025-09-27 13:25:57 +0200 |
|---|---|---|
| committer | Damian Tarnawski <gthetarnav@gmail.com> | 2025-09-27 13:25:57 +0200 |
| commit | 2d585d7ec2c1e47b1f48f6be7ae2e7da37aeafcc (patch) | |
| tree | 59c7c64a732e5683c89ffc0ef58649548958edec /tests | |
| parent | 5102e42c274a8e43e2bc49fe47b7aafbdf0d23f9 (diff) | |
Replace arrow symbol with underscore in inlay hints
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/inlay_hints_test.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/inlay_hints_test.odin b/tests/inlay_hints_test.odin index 76d8bcd..c1c078b 100644 --- a/tests/inlay_hints_test.odin +++ b/tests/inlay_hints_test.odin @@ -215,7 +215,7 @@ ast_inlay_hints_implicit_return_values :: proc(t: ^testing.T) { if !condition() do return[[ res, ok]] - condition() or_return[[ res, тоб]] + condition() or_return[[ res, _]] return value, true } |