Skip to content

Commit 7bc92ed

Browse files
committed
Wording tweak
1 parent 361b7f2 commit 7bc92ed

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -417,11 +417,11 @@
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
@@ -441,11 +441,11 @@
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
@@ -472,7 +472,7 @@
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
@@ -519,11 +519,11 @@
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

0 commit comments

Comments
 (0)