From 9b0939804f1f51913ea2068b3011f9656965e473 Mon Sep 17 00:00:00 2001 From: Evan Ovadia <192751+Verdagon@users.noreply.github.com> Date: Mon, 17 Jun 2024 17:09:47 -0400 Subject: [PATCH] Update FasterCompileTimes.md Minor clarification --- docs/FasterCompileTimes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/FasterCompileTimes.md b/docs/FasterCompileTimes.md index f16c70c4a..b9129f0ae 100644 --- a/docs/FasterCompileTimes.md +++ b/docs/FasterCompileTimes.md @@ -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 { @@ -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\]