diff --git a/sdk/program/src/rent.rs b/sdk/program/src/rent.rs index 7d47ffe2fc..4f481227f3 100644 --- a/sdk/program/src/rent.rs +++ b/sdk/program/src/rent.rs @@ -47,7 +47,7 @@ impl Rent { let burned_portion = (rent_collected * u64::from(self.burn_percent)) / 100; (burned_portion, rent_collected - burned_portion) } - /// minimum balance due for a given size Account::data.len() + /// minimum balance due for rent-exemption of a given size Account::data.len() /// /// Note: a stripped-down version of this calculation is used in /// calculate_split_rent_exempt_reserve in the stake program. When this function is updated, --