Skip to content

Commit 7b07fad

Browse files
committed
docs: update error message examples to use camelCase naming convention
1 parent 6f6f0d1 commit 7b07fad

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/config/webappDiscovery.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -479,8 +479,8 @@ export async function discoverUiBundle(
479479
'Each uiBundle must have a {name}.uibundle-meta.xml file.\n\n' +
480480
'Expected structure:\n' +
481481
' uiBundles/\n' +
482-
' └── my-app/\n' +
483-
' ├── my-app.uibundle-meta.xml (required)\n' +
482+
' └── myDashboard/\n' +
483+
' ├── myDashboard.uibundle-meta.xml (required)\n' +
484484
' └── ui-bundle.json (optional, for dev config)',
485485
'UiBundleNotFoundError'
486486
);
@@ -490,8 +490,8 @@ export async function discoverUiBundle(
490490
'No uiBundles folder found in the SFDX project.\n\n' +
491491
'Create the folder structure in any package directory (e.g. force-app, packages/my-pkg):\n' +
492492
' <package-path>/main/default/uiBundles/\n' +
493-
' └── my-app/\n' +
494-
' ├── my-app.uibundle-meta.xml (required)\n' +
493+
' └── myDashboard/\n' +
494+
' ├── myDashboard.uibundle-meta.xml (required)\n' +
495495
' └── ui-bundle.json (optional, for dev config)',
496496
'UiBundleNotFoundError'
497497
);

0 commit comments

Comments
 (0)