From 49ea6fc381accd0511a9e799aba2b124bfa3aa45 Mon Sep 17 00:00:00 2001 From: tobspr Date: Sat, 29 Aug 2020 22:37:44 +0200 Subject: [PATCH] Fix typo and typings --- src/js/game/components/item_processor.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/js/game/components/item_processor.js b/src/js/game/components/item_processor.js index 423cc8a9..c413fd8e 100644 --- a/src/js/game/components/item_processor.js +++ b/src/js/game/components/item_processor.js @@ -107,11 +107,13 @@ export class ItemProcessorComponent extends Component { /** * How long it takes until we are done with the current items + * @type {number} */ this.secondsUntilEject = 0; /** - * How much processing time we have lest from the last tick + * How much processing time we have left from the last tick + * @type {number} */ this.bonusFromLastTick = 0; }