From 8cfc6fac9834937dbe23d7c6bfb52550c6492247 Mon Sep 17 00:00:00 2001 From: Marcell Martini Date: Thu, 2 Feb 2023 12:24:07 -0400 Subject: [PATCH] fix: Fix urls of bubbleSort configure example. Fix the url of: * bubbleSort.go * bubbleSort_test.go * bubbleSorter.go --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 675a9dfc00..07d349ff04 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ - [The Go Programming Language](https://golang.org/) - Extension: [Go](https://marketplace.visualstudio.com/items?itemName=golang.Go) - Debugger: [delve](https://github.com/derekparker/delve) -- module code: [bubbleSort.go](https://github.com/vscode-debug-specs/go/blob/master/bubblesorter/bubbleSort.go) +- module code: [bubbleSort.go](https://github.com/vscode-debug-specs/go/blob/main/domain/bubblesort/bubbleSort.go) ## Spec @@ -68,7 +68,7 @@ ## unit test -source : [bubbleSort_test.go](https://github.com/vscode-debug-specs/go/blob/master/bubblesorter/bubbleSort_test.go) +source : [bubbleSort_test.go](https://github.com/vscode-debug-specs/go/blob/main/domain/bubblesort/bubbleSort_test.go) ### inline @@ -113,7 +113,7 @@ ext install ethan-reesor.vscode-go-test-adapter ## debugging executable file -source: [bubblesorter/cmd/bubblesorter/bubbleSorter.go](https://github.com/vscode-debug-specs/go/blob/master/bubblesorter/cmd/bubblesorter/bubbleSorter.go) +source: [cmd/bubblesorter/bubbleSorter.go](https://github.com/vscode-debug-specs/go/blob/main/cmd/bubblesorter/bubbleSorter.go) ### launch.json @@ -142,7 +142,7 @@ menu:`Go: Launch package` ## debugging local process -source: [bubblesorter/cmd/bubblesorter/bubbleSorter.go](https://github.com/vscode-debug-specs/go/blob/master/bubblesorter/cmd/bubblesorter/bubbleSorter.go) +source: [cmd/bubblesorter/bubbleSorter.go](https://github.com/vscode-debug-specs/go/blob/main/cmd/bubblesorter/bubbleSorter.go) ### prepare