Skip to content

Commit a20b4af

Browse files
fix grammar
1 parent 412c758 commit a20b4af

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

programming/javascript/faq/adaptive-wasm-loading.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Once correctly configured, the SDK will automatically detect the environment and
4646
4747
## How to manually specify which Wasm variant to load?
4848

49-
By default, the SDK automatically determines the most suitable WebAssembly (Wasm) variant to load based on the browsers capabilities.
49+
By default, the SDK automatically determines the most suitable WebAssembly (Wasm) variant to load based on the browser's capabilities.
5050
However, developers can **manually override** this behavior and explicitly specify which Wasm module to load through the `wasmLoadOptions` property.
5151

5252
### Example
@@ -75,7 +75,7 @@ type WasmType =
7575
>
7676
>If the specified Wasm variant is not supported in the current browser, the SDK will gracefully fall back to a compatible variant.
7777
78-
## Why isnt -SIMD-Pthread Wasm enabled by default on iOS?
78+
## Why isn't -SIMD-Pthread Wasm enabled by default on iOS?
7979

80-
Due to iOSs strict memory allocation and management limitations, loading `-SIMD-Pthread Wasm` can sometimes lead to “out of memory” errors on older devices or iOS versions.
80+
Due to iOS's strict memory allocation and management limitations, loading `-SIMD-Pthread Wasm` can sometimes lead to “out of memory” errors on older devices or iOS versions.
8181
To ensure stability and compatibility, the SDK does not load `-SIMD-Pthread Wasm` by default on iOS. Instead, it automatically falls back to the most suitable Baseline or SIMD variant depending on the environment.

programming/javascript/faq/general-troubleshooting-steps-for-decode-failure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Generally, with some setting changes via our APIs, Dynamsoft Barcode Reader Java
2828

2929

3030
<img src="../assets/full_hd.jpg" alt="Full HD" width="50%" height="50%">
31-
> **_NOTE:_** If the barcode is decoded, then you can output the settings and use that setting template via the `updateRuntimeSettings` method. If the barcode still cant be decoded via the online demo, then move on to step 2.
31+
> **_NOTE:_** If the barcode is decoded, then you can output the settings and use that setting template via the `updateRuntimeSettings` method. If the barcode still can't be decoded via the online demo, then move on to step 2.
3232
3333
## Step 2 - capture image frames and send to Dynamsoft for analysis
3434

programming/javascript/faq/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ noTitleIndex: true
4343

4444
17. [What file/image formats are supported when reading barcodes from files in local memory?](formats-supported-for-existing-files.html)
4545

46-
18. [How to scan the barcode on a US Drivers License and get the first name, last name, DOB, etc.?](scan-US-drivers-license.html)
46+
18. [How to scan the barcode on a US Driver's License and get the first name, last name, DOB, etc.?](scan-US-drivers-license.html)
4747

4848
19. [How to add/remove a "beep" sound once a barcode is found?](add-remove-beep-sound.html)
4949

programming/javascript/upgrade-guide/10to11.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Dynamsoft.Core.CoreModule.engineResourcePaths.rootDirectory = "https://cdn.jsdel
5959
6060
### Upgrade your template
6161

62-
The template system is upgraded. The template you used for the previous version cant be directly recognized by the new version. Please use the [template upgrade tool](https://www.dynamsoft.com/tools/template-upgrade/) to upgrade your template.
62+
The template system is upgraded. The template you used for the previous version can't be directly recognized by the new version. Please use the [template upgrade tool](https://www.dynamsoft.com/tools/template-upgrade/) to upgrade your template.
6363

6464
## From version 9.x or earlier
6565

@@ -70,6 +70,6 @@ The Dynamsoft Barcode Reader JavaScript edition has been refactored to integrate
7070

7171
> [!IMPORTANT]
7272
>
73-
> Dynamsofts ongoing feature development is based on the new DCV architecture. By upgrading to v11, youll gain access to improved performance and new capabilities.
73+
> Dynamsoft's ongoing feature development is based on the new DCV architecture. By upgrading to v11, you'll gain access to improved performance and new capabilities.
7474
7575
Due to the architectural changes, **a significant rewrite of your existing code is required**. we recommend you to follow the [User Guide](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/user-guide/barcode-scanner.html) and re-write your codes.

programming/javascript/user-guide/barcode-scanner-customization.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Refer to [`Use customized template`](#use-customized-template) for more details.
5353
5454
## Use customized template
5555

56-
In more complex scenarios—such as blurred, damaged, curved, or unevenly lit barcodes—you might need a custom template to perform specific image processing steps. BarcodeScannerConfig provides a property to load a template file, allowing you to customize the algorithms processing workflow.
56+
In more complex scenarios—such as blurred, damaged, curved, or unevenly lit barcodes—you might need a custom template to perform specific image processing steps. BarcodeScannerConfig provides a property to load a template file, allowing you to customize the algorithm's processing workflow.
5757

5858
> [!WARNING]
5959
> This operation will overwrite the built-in templates.
@@ -141,7 +141,7 @@ npm install dynamsoft-barcode-reader-bundle@11.2.4000 -E
141141

142142
### Component for video decoding
143143

144-
Heres how to quickly set up a video barcode scanner using the `BarcodeScanner` class:
144+
Here's how to quickly set up a video barcode scanner using the `BarcodeScanner` class:
145145

146146
```ts
147147
const config = {
@@ -155,7 +155,7 @@ Here’s how to quickly set up a video barcode scanner using the `BarcodeScanner
155155

156156
#### Define the resource paths
157157

158-
To ensure stability, especially in environments with limited internet access, its a good idea to **host all required resources locally** (e.g., under the dist/ folder).
158+
To ensure stability, especially in environments with limited internet access, it's a good idea to **host all required resources locally** (e.g., under the dist/ folder).
159159
Below is an example using the official CDN — feel free to replace it with your own path:
160160

161161
```ts

0 commit comments

Comments
 (0)