Hi,i got a method

Code:
void searchStaff(string staffID){
}
I want to write a comment on top to describe the method.

i did this:

Code:
/*searchStaff(string staffID) function searches a staff.
@staffID is id of staff to be found*/

void searchStaff(string staffID){
}
is this correct way to specific wat the method parameter is for?