-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add documentation #4
Conversation
<br/> | ||
|
||
# Installation | ||
```ps1 | ||
# .NET CLI | ||
dotnet add package Rascal --prerelease | ||
``` | ||
|
||
# Using the package |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keep this here. yes, documentation should be done in the docfx, but most people want to know the nuts and bolts right here, without going to the doc page.
src/Rascal.Analysis/Diagnostics.cs
Outdated
@@ -2,21 +2,24 @@ namespace Rascal.Analysis; | |||
|
|||
public static class Diagnostics | |||
{ | |||
private const string CorrectnessCategory = "Correctness"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would use RascalCorrectness
src/Rascal.Analysis/Diagnostics.cs
Outdated
@@ -2,21 +2,24 @@ namespace Rascal.Analysis; | |||
|
|||
public static class Diagnostics | |||
{ | |||
private const string CorrectnessCategory = "Correctness"; | |||
private const string AnalysisCategory = "Analysis"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RascalAnalysis
Add a docfx site containing API docs and some other documentation.