Skip to content

Commit

Permalink
Fixed typos in parameter help (#3589)
Browse files Browse the repository at this point in the history
Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs authored Oct 11, 2023
1 parent 0628690 commit 4c8809b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .dependency/zwe_doc_generation/md-content.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function generateDocumentationForNode(curNode, assembledParentNode) {
docContent += createDocContent(assembledDocNode[docType.fileName].content, docType);
const parentDocContent = createDocContent(assembledDocNode[docType.fileName].parentContent, docType);
if (parentDocContent) {
docContent += SUB_SECTION_HEADER_PREFIX + 'Inherited from parent command' + SEPARATOR + parentDocContent;
docContent += SEPARATOR + SUB_SECTION_HEADER_PREFIX + 'Inherited from parent command' + SEPARATOR + parentDocContent;
}
}

Expand Down
2 changes: 1 addition & 1 deletion bin/commands/components/search/.parameters
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
component-name,component|o|string|||||Component name to search for.
component-id,id|d|string|||||Component id to search for.
registry|r|string|||||Specifies the registry to searh within instead of the default. The registry must be compatible with the manager used.
registry|r|string|||||Specifies the registry to search within instead of the default. The registry must be compatible with the manager used.
handler||string|||||Specifies the registry handler name used with the package registry, instead of the default. The handler must be compatible with the registry used.

2 changes: 1 addition & 1 deletion bin/commands/components/uninstall/.parameters
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
component-name,component|o|string|required||||The name of an installed component.
registry|r|string|||||Specifies the registry to searh within instead of the default. The registry must be compatible with the manager used.
registry|r|string|||||Specifies the registry to search within instead of the default. The registry must be compatible with the manager used.
handler||string|||||Specifies the registry handler name used with the package registry, instead of the default. The handler must be compatible with the registry used.
dry-run|d|boolean|||||Whether or not to perform the upgrade versus just checking if an upgrade is available
2 changes: 1 addition & 1 deletion bin/commands/components/upgrade/.parameters
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
component-file,component|o|string|required||||Either a path or component name. The path must be to a component package or directory. If a name is specified instead, install checks the zowe package registry.
registry|r|string|||||Specifies the registry to searh within instead of the default. The registry must be compatible with the manager used.
registry|r|string|||||Specifies the registry to search within instead of the default. The registry must be compatible with the manager used.
handler||string|||||Specifies the registry handler name used with the package registry, instead of the default. The handler must be compatible with the registry used.
dry-run|d|boolean|||||Whether or not to perform the upgrade versus just checking if an upgrade is available

0 comments on commit 4c8809b

Please sign in to comment.