From f38f9fe28d31e574ebfd9c8a0a703203209035c3 Mon Sep 17 00:00:00 2001 From: tripathyr Date: Wed, 22 Dec 2021 12:02:35 +0530 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 39083ff..5b62604 100644 --- a/README.md +++ b/README.md @@ -73,18 +73,18 @@ floCloudAPI.requestGeneralData("type1", { senderIDs: floGlobals.subAdmins }) * Usage of sendGeneralData from RIBC dApp ``` -applyForIntern: function (name, comments = '') { + applyForIntern: function (name, comments = '') { return floCloudAPI.sendGeneralData([name, comments], "InternRequests") }, - postInternUpdate: function (updates) { + postInternUpdate: function (updates) { return new Promise((resolve, reject) => { floCloudAPI.sendGeneralData(updates, "InternUpdates") .then(results => resolve(results)) .catch(error => reject(error)) }) - applyForTask: function (projectCode, branch, task, comments = '') { + applyForTask: function (projectCode, branch, task, comments = '') { return floCloudAPI.sendGeneralData([projectCode, branch, task, comments], "TaskRequests") },