Skip to content

Commit

Permalink
Update task.md
Browse files Browse the repository at this point in the history
language checked
  • Loading branch information
stephen-hero authored and onewhl committed Jan 24, 2024
1 parent e01f461 commit 9ef3d13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RenamingCode/RenameRefactoringInIDE/FixTyposPractice/task.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ and rename entities according to the rules described in the previous lesson.

<div class="hint" title="Naming hint">

- `getgradestatus` - method names should follow the `сamelCase` style: every word except the first starts with an uppercase letter. The correct name is `getGradeStatus`.
- `getgradestatus` - method names should follow `сamelCase` style: every word except the first starts with an uppercase letter. The correct name is `getGradeStatus`.
- `SetName` - method names should start with a lowercase letter. The correct name is `setName`.
- `setaGe` - each sub-word except the first should start with an uppercase letter. The correct name is `setAge`.
- `setAvergeScore` - there is a typo in _Averge_ sub-word. The correct name is `setAverageScore`.
- `setAvergeScore` - there is a typo in the _Averge_ sub-word. The correct name is `setAverageScore`.

</div>

0 comments on commit 9ef3d13

Please sign in to comment.