Skip to content

Commit 4195083

Browse files
authored
doc: Rename branch to main in documents (#88)
1 parent 2202411 commit 4195083

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@ Before creating a new issue, please do a search to see if the issue or feature r
1515
If you find your issue already exists, make relevant comments and add your reaction:
1616
- 👍 - upvote
1717
- 👎 - downvote
18-
18+
1919
### Writing Good Bug Reports and Feature Requests
2020
In order to let us know better about the issue, please make sure the following items are included with each issue:
2121
- The repo link which you are indexing with
2222
- Reproducible steps
2323
- What you expected to see, versus what you actually saw
2424
- Images, animations, or a link to a video showing the issue occurring
25-
25+
2626
## Contributing Fixes
2727
If you are interested in writing code to fix issues, please check the following content to see how to set up the developing environment.
2828

2929
### Overview
30-
Generally speaking, the LSIF for Java uses several **visitors** to visit the AST([Abstract Syntax Tree](https://www.eclipse.org/articles/article.php?file=Article-JavaCodeManipulation_AST/index.html)) and dump the index according to the [LSIF Specification](https://github.com/Microsoft/language-server-protocol/blob/master/indexFormat/specification.md).
30+
Generally speaking, the LSIF for Java uses several **visitors** to visit the AST([Abstract Syntax Tree](https://www.eclipse.org/articles/article.php?file=Article-JavaCodeManipulation_AST/index.html)) and dump the index according to the [LSIF Specification](https://github.com/Microsoft/language-server-protocol/blob/main/indexFormat/specification.md).
3131

3232
Major modules of the LSIF for Java are listed as follow:
33-
- [AST visitors](https://github.com/Microsoft/lsif-java/tree/master/com.microsoft.java.lsif.core/src/com/microsoft/java/lsif/core/internal/visitors)
34-
- [Language Server Index Format definitions](https://github.com/Microsoft/lsif-java/tree/master/com.microsoft.java.lsif.core/src/com/microsoft/java/lsif/core/internal/protocol)
35-
- [Components and utilities for indexing](https://github.com/Microsoft/lsif-java/tree/master/com.microsoft.java.lsif.core/src/com/microsoft/java/lsif/core/internal/indexer)
36-
- [Emitters to print out index information](https://github.com/Microsoft/lsif-java/tree/master/com.microsoft.java.lsif.core/src/com/microsoft/java/lsif/core/internal/emitter)
33+
- [AST visitors](https://github.com/Microsoft/lsif-java/tree/main/com.microsoft.java.lsif.core/src/com/microsoft/java/lsif/core/internal/visitors)
34+
- [Language Server Index Format definitions](https://github.com/Microsoft/lsif-java/tree/main/com.microsoft.java.lsif.core/src/com/microsoft/java/lsif/core/internal/protocol)
35+
- [Components and utilities for indexing](https://github.com/Microsoft/lsif-java/tree/main/com.microsoft.java.lsif.core/src/com/microsoft/java/lsif/core/internal/indexer)
36+
- [Emitters to print out index information](https://github.com/Microsoft/lsif-java/tree/main/com.microsoft.java.lsif.core/src/com/microsoft/java/lsif/core/internal/emitter)
3737

3838
### Setup
3939
1. Fork and clone the repository: `git clone https://github.com/Microsoft/lsif-java.git`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
The purpose of the Language Server Index Format (LSIF) is to define a standard format for language servers or other programming tools to dump their knowledge about a workspace. This dump can later be used to answer language server [LSP](https://microsoft.github.io/language-server-protocol/) requests for the same workspace without running the language server itself. Since much of the information would be invalidated by a change to the workspace, the dumped information typically excludes requests used when mutating a document. So, for example, the result of a code complete request is typically not part of such a dump.
77

8-
A first draft specification can be found [here](https://github.com/Microsoft/language-server-protocol/blob/master/indexFormat/specification.md).
8+
A first draft specification can be found [here](https://github.com/Microsoft/language-server-protocol/blob/main/indexFormat/specification.md).
99

1010
## Quickstart
1111

0 commit comments

Comments
 (0)