diff --git a/psiSection/practicingPsiProject/replaceFunctionCallArgumentsProgrammingTask/task.md b/psiSection/practicingPsiProject/replaceFunctionCallArgumentsProgrammingTask/task.md index d378c5f..f7a5ffc 100644 --- a/psiSection/practicingPsiProject/replaceFunctionCallArgumentsProgrammingTask/task.md +++ b/psiSection/practicingPsiProject/replaceFunctionCallArgumentsProgrammingTask/task.md @@ -4,14 +4,14 @@ You have successfully refactored a function to use a data class for its paramete This task involves updating each call to the refactored function, replacing its original list of arguments with a single argument: an instance of the data class. -**Your objective:** +**Your Objective:** Implement the `replaceFunctionCallArgumentsWithDataClass` function. This function scans a Kotlin file for calls to the refactored function and replaces the existing arguments in each call with a new instance of the data class, properly populated with the original arguments.