Skip to content

Commit dda362f

Browse files
authored
Merge pull request #11648 from CrimsonGlory/patch-1
minor doc change. RHS->right hand side
2 parents ef6ad57 + ab5898f commit dda362f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/types/reference-types.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ shown in the following example:
559559
function newCampaign(address payable beneficiary, uint goal) public returns (uint campaignID) {
560560
campaignID = numCampaigns++; // campaignID is return variable
561561
// We cannot use "campaigns[campaignID] = Campaign(beneficiary, goal, 0, 0)"
562-
// because the RHS creates a memory-struct "Campaign" that contains a mapping.
562+
// because the right hand side creates a memory-struct "Campaign" that contains a mapping.
563563
Campaign storage c = campaigns[campaignID];
564564
c.beneficiary = beneficiary;
565565
c.fundingGoal = goal;

0 commit comments

Comments
 (0)