Fix incorrect documentation for keyword args

Changes:
Fix incorrect documentation for keyword arguments

Tested:
NA

Change-Id: Icb12076b16331651e9079806d899502501509875
Signed-off-by: Sridevi Ramesh <sridevra@in.ibm.com>
diff --git a/redfish/systems/test_led_indicator_asserted.robot b/redfish/systems/test_led_indicator_asserted.robot
index e1ef718..c233170 100755
--- a/redfish/systems/test_led_indicator_asserted.robot
+++ b/redfish/systems/test_led_indicator_asserted.robot
@@ -246,6 +246,9 @@
     [Documentation]  Set And Verify LED Location Indicator State.
     [Arguments]  ${set_value}
 
+    # Description of argument(s):
+    # set_value      Location indicator active value (True, False).
+
     ${payload}=  Create Dictionary    LocationIndicatorActive=${set_value}
     Redfish.Patch      /redfish/v1/Systems/${SYSTEM_ID}    body=&{payload}
     ...  valid_status_codes=[${HTTP_NO_CONTENT}]
@@ -259,6 +262,9 @@
     [Documentation]  setting back Initial value.
     [Arguments]  ${value}
 
+    # Description of argument(s):
+    # value      Location indicator active value (True, False).
+
     ${payload}=  Create Dictionary    LocationIndicatorActive=${value}
     Redfish.Patch      /redfish/v1/Systems/${SYSTEM_ID}    body=&{payload}
     ...  valid_status_codes=[${HTTP_NO_CONTENT}]