F-2025-0020·code-quality
Typo on file name FeeDistibutionVault
TL;DR
The file is named FeeDistibutionVault.sol (missing an 'r' in 'Distribution'), while the contract inside is FeeDistributionVault. The mismatch is a code-quality nit, not a security issue.
Severity
INFO
Impact
LOW
Likelihood
LOW
Method
MManual review
CAT.
Complexity
LOW
Exploitability
LOW
02Section · Description
Description
The contract file is named FeeDistibutionVault.sol (missing an r in "Distribution"), while the contract itself is correctly named FeeDistributionVault.
03Section · Impact
Impact
Filename does not match contract name. Tooling and editors that expect filename = contract name may produce confusing errors.
04Section · Recommendation
Recommendation
Rename the file from FeeDistibutionVault.sol to FeeDistributionVault.sol to match the actual contract name.

