Match @return word styling to match @param (i.e. sentence case)

This commit is contained in:
William Entriken 2021-05-08 01:14:22 -04:00 committed by GitHub
parent 5d070c5bc2
commit 88e33c9ea3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ The following example shows a contract and a function using all available tags.
/// @notice Calculate tree age in years, rounded up, for live trees
/// @dev The Alexandr N. Tetearing algorithm could increase precision
/// @param rings The number of rings from dendrochronological sample
/// @return age in years, rounded up for partial years
/// @return Age in years, rounded up for partial years
function age(uint256 rings) external virtual pure returns (uint256) {
return rings + 1;
}