Skip to content

Commit ab5898f

Browse files
authored
RHS->right hand side
1 parent ef6ad57 commit ab5898f

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)