From bd468a61431573e8c78c72a029ffce37215280eb Mon Sep 17 00:00:00 2001 From: Prakrit-Jain Date: Thu, 17 Aug 2023 16:32:55 +0530 Subject: [PATCH] docs: update profit and loss cases mentioned in Accounting --- SPECIFICATION.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SPECIFICATION.md b/SPECIFICATION.md index 9137dfa..cb785e9 100644 --- a/SPECIFICATION.md +++ b/SPECIFICATION.md @@ -100,8 +100,8 @@ The strategy will evaluate profit and losses from the yield generating activitie This is done comparing the current totalAssets of the strategy with the amount returned from _harvestAndReport() -If totalAssets < newTotalAssets: the vault will record a loss -If totalAssets > newTotalAssets: the vault will record a profit +If totalAssets < newTotalAssets: the vault will record a profit +If totalAssets > newTotalAssets: the vault will record a loss Both loss and profit will impact strategy's totalAssets, increasing if there are profits, decreasing if there are losses.