From a1ac847372a03bbca3f21d7942d0106b3f0c2897 Mon Sep 17 00:00:00 2001 From: Tyler Koon Date: Tue, 30 Dec 2025 15:30:00 -0800 Subject: [PATCH 1/2] Big change --- src/myfile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/myfile.ts b/src/myfile.ts index 08c7c96..e264bab 100644 --- a/src/myfile.ts +++ b/src/myfile.ts @@ -1,3 +1,3 @@ function compute(num1: number, num2: number): number { - return num1 + num2; + return num1 * num2; } \ No newline at end of file From be3e98fa4705268a905fd2e580f05c8d47d2b0e7 Mon Sep 17 00:00:00 2001 From: Tyler Koon Date: Tue, 30 Dec 2025 15:33:13 -0800 Subject: [PATCH 2/2] Updating docs --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 648f951..b0ac3e0 100644 --- a/docs/README.md +++ b/docs/README.md @@ -2,4 +2,4 @@ Codoc is a GitHub action that helps keep track of documentation. #### src/myfile.ts -This file contains a function `compute` that takes in two numbers (num1 and num2), and returns the sum of these two numbers. \ No newline at end of file +This file contains a function `compute` that takes in two numbers (num1 and num2), and returns the product of these two numbers. \ No newline at end of file