Skip to content

Commit e9e7cdc

Browse files
committed
Removing extra log
1 parent 3e3e635 commit e9e7cdc

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/Sample-Interfaces/SampleInterface.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
---
2+
layout: default
3+
---
14
# SampleInterface
25

36
This is an interface description.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cparra/apexdocs",
3-
"version": "2.2.3",
3+
"version": "2.2.4",
44
"description": "Library with CLI capabilities to generate documentation for Salesforce Apex classes.",
55
"keywords": [
66
"apex",

src/model/markdown-generation-util/doc-comment-annotation-util.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export function addCustomDocCommentAnnotations(markdownFile: MarkdownFile, docCo
1919
const words = text.split(/[-_]+/);
2020
const capitalizedWords = [];
2121
for (const word of words) {
22-
console.log(`current word ${word}`);
2322
capitalizedWords.push(word.charAt(0).toUpperCase() + word.slice(1));
2423
}
2524
return capitalizedWords.join(' ');

0 commit comments

Comments
 (0)