**refactor(demo): update logging and function descriptions for consistency**

### Changes:
- **simplified-augmentations.js**:
  - Updated comments and console logs to replace "examples" with "demo" for consistent terminology.
  - Adjusted function description and logging messages to align with the recent folder structure changes.

- **Renamed**:
  - `examples/simplified-augmentations.js` → `demo/simplified-augmentations.js`.
  - `examples/demo.html` → `demo/index.html`.

### Purpose:
Revised terminology and logging outputs to reflect the updated folder structure and naming conventions. Improved clarity and consistency across file comments and logs.
This commit is contained in:
David Snelling 2025-06-23 10:59:19 -07:00
parent 36336c5180
commit dbfd760ecc
2 changed files with 4 additions and 4 deletions

View file

@ -370,7 +370,7 @@ async function example5() {
}
/**
* Run all examples
* Run all demo
*/
async function runExamples() {
try {
@ -380,11 +380,11 @@ async function runExamples() {
await example4()
await example5()
console.log('All examples completed successfully!')
console.log('All demo completed successfully!')
} catch (error) {
console.error('Error running examples:', error)
console.error('Error running demo:', error)
}
}
// Run the examples
// Run the demo
runExamples()