Skip to content

Commit 329df70

Browse files
committed
chore: fixes extraneous master references
1 parent 28b226e commit 329df70

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
33
##
4-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
4+
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
55

66
# User-specific files
77
*.suo

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
// Use IntelliSense to find out which attributes exist for C# debugging
66
// Use hover for the description of the existing attributes
7-
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
7+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/main/debugger-launchjson.md
88
"name": "Launch Hidi",
99
"type": "coreclr",
1010
"request": "launch",
@@ -22,7 +22,7 @@
2222
{
2323
// Use IntelliSense to find out which attributes exist for C# debugging
2424
// Use hover for the description of the existing attributes
25-
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
25+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/main/debugger-launchjson.md
2626
"name": "Launch Workbench",
2727
"type": "coreclr",
2828
"request": "launch",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ var httpClient = new HttpClient
8181
BaseAddress = new Uri("https://raw.githubusercontent.com/OAI/OpenAPI-Specification/")
8282
};
8383

84-
var stream = await httpClient.GetStreamAsync("master/examples/v3.0/petstore.yaml");
84+
var stream = await httpClient.GetStreamAsync("main/examples/v3.0/petstore.yaml");
8585

8686
// Read V3 as YAML
8787
var openApiDocument = new OpenApiStreamReader().Read(stream, out var diagnostic);

0 commit comments

Comments
 (0)