Redfish cheatsheet: Correct Actions/Manager.ResetToDefaults command

According to the Redfish Data Model specification the correct parameter
name for the '/Actions/Manager.ResetToDefaults' action is not
'ResetToDefaults' but 'ResetType'.
Change parameter name to match with the specification.

Change-Id: I92cda8479dff19e9cd0517d85973d05be8c73d9c
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
diff --git a/REDFISH-cheatsheet.md b/REDFISH-cheatsheet.md
index e039c4e..e885c1f 100644
--- a/REDFISH-cheatsheet.md
+++ b/REDFISH-cheatsheet.md
@@ -103,7 +103,7 @@
 Proceed with caution:
 
 ```
-curl -k -H "X-Auth-Token: $token" -H "Content-Type: application/json" -X POST https://${bmc}/redfish/v1/Managers/bmc/Actions/Manager.ResetToDefaults -d '{"ResetToDefaultsType": "ResetAll"}'
+curl -k -H "X-Auth-Token: $token" -H "Content-Type: application/json" -X POST https://${bmc}/redfish/v1/Managers/bmc/Actions/Manager.ResetToDefaults -d '{"ResetType": "ResetAll"}'
 ```
 
 ---