Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Fix argument variable's name to follow the document convention #296

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/asciidoc/webapp/webapp003.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ public class Hello {
return name;
}

public void setName(String user_name) {
this.name = user_name;
public void setName(String userName) {
this.name = userName;
}
}
----
Expand Down