Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/FasterCompileTimes.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ fn equip(ship ISpaceship, weapon IWeapon) { ... }

(Let's say this function's FunctionId is equip#42)

We'd have a OverloadSet:
We'd have a OverloadSet for the name `equip` which looks like this:

```
struct OverloadSet {
Expand Down Expand Up @@ -434,7 +434,7 @@ fn equip(ship ISpaceship, weapon IArmor) { ... }

(Note how SpikyShield is also a Weapon)

With that, our total OverloadSet contains:
With that, our total OverloadSet for the name `equip` contains:

* 0, ISpaceship, \[equip#42, equip#73\]
* 0, Firefly, \[equip#42, equip#73\]
Expand Down