File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 417417
418418 ``` gleam
419419 pub fn is_empty(list: List(a)) -> Bool {
420- // ^^^^ Triggering the action over here
420+ // ^^^^ Triggering the action here
421421 }
422422 ```
423423
424- Triggering the action over the ` list ` argument would result in the following
424+ Triggering the action on the ` list ` argument would result in the following
425425 code:
426426
427427 ``` gleam
441441 ``` gleam
442442 pub fn main() {
443443 let User(name:, role:) = find_user("lucy")
444- // ^^^^ Triggering the action over
444+ // ^^^^ Triggering the action here
445445 }
446446 ```
447447
448- Triggering the action over another variable like ` role ` would result in the
448+ Triggering the action on another variable like ` role ` would result in the
449449 following code:
450450
451451 ``` gleam
472472 }
473473 ```
474474
475- Triggering the action over the ` user ` variable would result in the following
475+ Triggering the action on the ` user ` variable would result in the following
476476 code:
477477
478478 ``` gleam
519519 pub fn main() {
520520 let first_name = "Giacomo"
521521 User(first_name, "Cavalieri", ["gleam"])
522- //^^^^ Triggering the code action over here
522+ //^^^^ Triggering the code action here
523523 }
524524 ```
525525
526- Triggering the code action over the ` User ` constructor will result in the
526+ Triggering the code action on the ` User ` constructor will result in the
527527 following code:
528528
529529 ``` gleam
You can’t perform that action at this time.
0 commit comments