Modify rule S4487: Fix error in code example (#4644)

This commit is contained in:
Sebastien Marichal 2025-01-31 15:47:52 +01:00 committed by GitHub
parent 7e54acfafa
commit 1e63f6a274
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,7 @@ public class Rectangle
{
get
{
return length * width;
return length * length;
}
}
}