diff --git a/Software_Engineering/Call_stack.md b/Software_Engineering/Call_stack.md index 7d46d2f..74f919f 100644 --- a/Software_Engineering/Call_stack.md +++ b/Software_Engineering/Call_stack.md @@ -1,5 +1,6 @@ --- -category: Software Engineering +categories: + - Software Engineering tags: - callstack --- @@ -12,12 +13,12 @@ A [stack](/Data_Structures/Stacks.md) data structure that holds the information ```js function greet(who) { - console.log('Hello ' + who); + console.log("Hello " + who); } -greet('Harry'); +greet("Harry"); -console.log('Bye'); +console.log("Bye"); ``` ### Breakdown