@@ -366,7 +366,7 @@ public function delete(int|null $recordId,
366366 * If you omit this parameter, update operation does not care the value of modId special field.
367367 * @param array|object|null $portal Associated array contains the modifying values in the portal.
368368 * Ex.: {"<PortalName>"=>{"<FieldName>"=>"<Value>", "recordId"=>"12"}}. FieldName has to "<TOCName>::<FieldName>".
369- * The recordId key specifiy the record to edit in portal.
369+ * The recordId key specifies the record to edit in the portal.
370370 * @param array|null $script scripts that should execute the right timings. See FileMakerRelation::query().
371371 * @throws Exception In case of any error, an exception arises.
372372 */
@@ -432,7 +432,7 @@ public function setGlobalField(array $fields): void
432432 * @param string $containerFieldName The field name of container field.
433433 * @param int|null $containerFieldRepetition In the case of repetiton field, this has to be the number from 1.
434434 * If omitted this, the number "1" is going to be specified.
435- * @param string|null $fileName Another file name for uploading file. If omitted, the original file name is chosen.
435+ * @param string|null $fileName Another file name for an uploading file. If omitted, the original file name is chosen.
436436 * @throws Exception In case of any error, an exception arises.
437437 */
438438 public function uploadFile (string $ filePath ,
@@ -442,7 +442,7 @@ public function uploadFile(string $filePath,
442442 string |null $ fileName = null ): void
443443 {
444444 if (!file_exists ($ filePath )) {
445- throw new Exception ("File doesn't exsist : {$ filePath }. " );
445+ throw new Exception ("File doesn't exist : {$ filePath }. " );
446446 }
447447 if (is_null ($ recordId )) {
448448 return ;
0 commit comments