Skip to content

Commit 04199b4

Browse files
committed
Collected some misspellings.
1 parent 42f3005 commit 04199b4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/FMDataAPI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class FMDataAPI
5656
* @param string|null $protocol FileMaker Server's protocol name. If omitted, 'https' is chosen.
5757
* @param array|null $fmDataSource Authentication information for external data sources.
5858
* Ex. [{"database"=>"<databaseName>", "username"=>"<username>", "password"=>"<password>"}].
59-
* If you use OAuth, "oAuthRequestId" and "oAuthIdentifier" keys have to be spedified.
59+
* If you use OAuth, "oAuthRequestId" and "oAuthIdentifier" keys have to be specified.
6060
* @param boolean $isUnitTest If it's set to true, the communication provider just works locally.
6161
*/
6262
public function __construct(string $solution,

src/Supporting/FileMakerLayout.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)