From f7f1aa0417dc645fe1a70022dbd58ef5063f5aac Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sat, 2 Dec 2023 09:59:05 +0100 Subject: Fix typos Change-Id: I9dd8a05048631cf0f1b8ec1f2ccef4d800e42e7d Reviewed-on: https://gerrit.libreoffice.org/c/help/+/160239 Tested-by: Jenkins Reviewed-by: Julien Nabet --- source/text/sbasic/shared/03/sf_dataset.xhp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/text/sbasic') diff --git a/source/text/sbasic/shared/03/sf_dataset.xhp b/source/text/sbasic/shared/03/sf_dataset.xhp index 82171d2c28..112a21dbbc 100644 --- a/source/text/sbasic/shared/03/sf_dataset.xhp +++ b/source/text/sbasic/shared/03/sf_dataset.xhp @@ -437,7 +437,7 @@

ExportValueToFile

Exports the value of a binary field of the current record to the specified file. - If the specified field is not binary or if it cointains no data, then the output file is not created. + If the specified field is not binary or if it contains no data, then the output file is not created. svc.ExportValueToFile(fieldname: str, filename: str, overwrite: bool): bool @@ -538,7 +538,7 @@ svc.Insert(pvargs: any): int - pvargs: A Dictionary containing pairs of field names and their respective values. Alternativelly, an even number of arguments can be specified alternating field names (as a String) and their values. + pvargs: A Dictionary containing pairs of field names and their respective values. Alternatively, an even number of arguments can be specified alternating field names (as a String) and their values. Consider a table named "Customers" with 4 fields: "ID" (BigInt, auto value and primary key), "Name" (VarChar), "Age" (Integer), "City" (VarChar). @@ -670,7 +670,7 @@ svc.Update(pvargs: any): bool - pvargs: A Dictionary containing pairs of field names and their respective values. Alternativelly, an even number of arguments can be specified alternating field names (as a String) and their values. + pvargs: A Dictionary containing pairs of field names and their respective values. Alternatively, an even number of arguments can be specified alternating field names (as a String) and their values. The example below updates the current record using a Dictionary. -- cgit