From ab5898f11c381e783a435ac74ac72bfca2cce5fc Mon Sep 17 00:00:00 2001 From: CrimsonGlory Date: Mon, 12 Jul 2021 21:18:46 -0300 Subject: [PATCH] RHS->right hand side --- docs/types/reference-types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/types/reference-types.rst b/docs/types/reference-types.rst index 7b1b541f3..6d5240ec8 100644 --- a/docs/types/reference-types.rst +++ b/docs/types/reference-types.rst @@ -559,7 +559,7 @@ shown in the following example: function newCampaign(address payable beneficiary, uint goal) public returns (uint campaignID) { campaignID = numCampaigns++; // campaignID is return variable // We cannot use "campaigns[campaignID] = Campaign(beneficiary, goal, 0, 0)" - // because the RHS creates a memory-struct "Campaign" that contains a mapping. + // because the right hand side creates a memory-struct "Campaign" that contains a mapping. Campaign storage c = campaigns[campaignID]; c.beneficiary = beneficiary; c.fundingGoal = goal;