From 6b75283f6da1b35a5841834a7f6a2d98b5bea323 Mon Sep 17 00:00:00 2001 From: sockybob <44141246+sockybob@users.noreply.github.com> Date: Thu, 17 Jun 2021 12:13:23 +0300 Subject: [PATCH] Fix typo (#4168) --- docs/Game Making Tips.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Game Making Tips.md b/docs/Game Making Tips.md index 1e81b40a6f..45e5a147ad 100644 --- a/docs/Game Making Tips.md +++ b/docs/Game Making Tips.md @@ -50,7 +50,7 @@ String constants should be consts, use StringBuilders (or just ArrayLists of str One thing I did not expect to be such an issue is intermediate lists when sorting and mapping. -But appparently, the memory allocation for these tasks is Serious Business. +But apparently, the memory allocation for these tasks is Serious Business. So whenever possible, take your list and .asSequence() it before actiating list operations - this results in huge savings of both time and memory!