From: Pasi Kallinen Date: Mon, 9 Mar 2015 20:22:32 +0000 (+0200) Subject: Comment typofix X-Git-Tag: NetHack-3.6.0_RC01~621^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa186c01562f760be72cb857fb7512fbba45f7fc;p=nethack Comment typofix --- diff --git a/src/fountain.c b/src/fountain.c index 482b0ed76..e87748e0a 100644 --- a/src/fountain.c +++ b/src/fountain.c @@ -456,7 +456,7 @@ register struct obj *obj; long money = money_cnt(invent); struct obj *otmp; if (money > 10) { - /* Amount to loose. Might get rounded up as fountains don't pay change... */ + /* Amount to lose. Might get rounded up as fountains don't pay change... */ money = somegold(money) / 10; for (otmp = invent; otmp && money > 0; otmp = otmp->nobj) if (otmp->oclass == COIN_CLASS) { int denomination = objects[otmp->otyp].oc_cost;