Skip to content

Commit

Permalink
Refresh docs
Browse files Browse the repository at this point in the history
  • Loading branch information
terryburton committed Oct 2, 2024
1 parent 4906427 commit 3638a06
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions docs/demo/example.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
Example HTML app that uses the JS + WASM build of the GS1 Syntax Engine.
Example HTML app that uses the JS + WASM build of the GS1 Barcode Syntax Engine.
Copyright (c) 2022-2024 GS1 AISBL.
Expand All @@ -31,7 +31,7 @@
-->

<title>GS1 Syntax Engine HTML demo | Loading ...</title>
<title>GS1 Barcode Syntax Engine HTML demo | Loading ...</title>

<script type="module" src="example.mjs"></script>

Expand Down
4 changes: 2 additions & 2 deletions docs/demo/example.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Event-driven functions for example HTML app. which uses the JavaScript
* wrapper around the WASM build of the GS1 Syntax Engine.
* wrapper around the WASM build of the GS1 Barcode Syntax Engine.
*
* Copyright (c) 2022-2024 GS1 AISBL.
*
Expand Down Expand Up @@ -40,7 +40,7 @@ async function init() {
gs1encoder = new GS1encoder();
await gs1encoder.init();

document.title = "GS1 Syntax Engine HTML demo | Library release: " + gs1encoder.version;
document.title = "GS1 Barcode Syntax Engine HTML demo | Library release: " + gs1encoder.version;

var dataParam = new URL(document.location.toString()).searchParams.get('data');

Expand Down
6 changes: 3 additions & 3 deletions docs/demo/gs1encoder.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* JavaScript wrapper for the GS1 Syntax Engine compiled as a WASM by
* JavaScript wrapper for the GS1 Barcode Syntax Engine compiled as a WASM by
* Emscripten.
*
* Copyright (c) 2022-2024 GS1 AISBL.
Expand Down Expand Up @@ -37,7 +37,7 @@ import createGS1encoderModule from './gs1encoder-wasm.mjs';
/**
* <pre>
*
* This class implements a wrapper around the GS1 Syntax Engine WASM build
* This class implements a wrapper around the GS1 Barcode Syntax Engine WASM build
* that presents its functionality in the form of a typical JavaScript object
* interface.
*
Expand Down Expand Up @@ -143,7 +143,7 @@ export class GS1encoder {

this.ctx = this.api.gs1_encoder_init(null);
if (this.ctx === null)
throw new GS1encoderGeneralException("Failed to initalise GS1 Syntax Engine");
throw new GS1encoderGeneralException("Failed to initalise GS1 Barcode Syntax Engine");

}

Expand Down
8 changes: 4 additions & 4 deletions docs/gs1encoders_8h.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3638a06

Please sign in to comment.