diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/test.js | 6 | ||||
-rw-r--r-- | examples/test.txt | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/examples/test.js b/examples/test.js index 80c7edc..e011d4e 100644 --- a/examples/test.js +++ b/examples/test.js @@ -5,12 +5,12 @@ @param y {number} The Y input @returns {number} x + y */ -function myFunction(x, y = 10) { +function myFunctionHehe(x, y = 10) { return x + y } -myFunction() -myFunction() +myFunctionHehe() +myFunctionHehe() class MyBigClass { constructor(pValue) { diff --git a/examples/test.txt b/examples/test.txt index f5f631f..f9b5cfd 100644 --- a/examples/test.txt +++ b/examples/test.txt @@ -1 +1,2 @@ -bloads +This is some text that is WRONG +Just flat out wrong |