Skip to content
This repository has been archived by the owner on Jun 14, 2022. It is now read-only.

Commit

Permalink
Fix - Removed extra space between argument type and name in Method he…
Browse files Browse the repository at this point in the history
…ader for non-collection params | Updated Changelog and Minor Version
  • Loading branch information
HugoOM committed Mar 22, 2019
1 parent 91cb1c0 commit e110fe1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,10 @@
- File header update regardless of settings (for header inserted through command)
- Finer grain tuning of the method header tags through settings

## [0.5.1]

- Fixed an issue where two spaces would be added between a param type and it's name, for method headers

## [0.5.0]

- Complete rebranding into **_Salesforce Documenter_**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "sfdx-autoheader",
"displayName": "Salesforce Documenter",
"description": "Automated Code Documentation Generation for Salesforce",
"version": "0.5.0",
"version": "0.5.1",
"publisher": "HugoOM",
"license": "MIT",
"badges": [
Expand Down
1 change: 0 additions & 1 deletion src/extension/documenter.method.ts
Expand Up @@ -264,7 +264,6 @@ export default class MethodDocumenter {
else if (!isRoot)
currentProcessedToken =
token +
" " +
recursiveProcessParamToken(tokens[(currentIndex += 1)], true, false);
else currentProcessedToken = (isWithinCollection ? "" : " ") + token;

Expand Down

0 comments on commit e110fe1

Please sign in to comment.