Skip to content

Commit f05b097

Browse files
authored
Merge pull request #62 from pitmonticone/master
Clean README, CONTRIBUTING and user guide.
2 parents c03b4d8 + 4e37cb8 commit f05b097

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Contributing Guide
22

3-
Whenever posssible, we prefer to follow the expectations specified by the Visual Studio Code contributing guide. Please refer to the [VS Code Contributing guide](https://github.com/microsoft/vscode-docs/blob/main/CONTRIBUTING.md) for more details around best practices.
3+
Whenever possible, we prefer to follow the expectations specified by the Visual Studio Code contributing guide. Please refer to the [VS Code Contributing guide](https://github.com/microsoft/vscode-docs/blob/main/CONTRIBUTING.md) for more details around best practices.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66

77
This repository contains the documentation for the [julia VS Code extension](https://marketplace.visualstudio.com/items?itemName=julialang.language-julia).
88

9-
109
## Contributing to the Documentation
1110

1211
In order to contribute to the documentation, simply modify the files in the `/docs/src` folder and open a PR against the `master` branch.
1312
Once a PR has been opened, the CI will automatically run [Documenter.jl](https://github.com/JuliaDocs/Documenter.jl) and generate a new documentation against the PR.
14-
You can see the generate documentation on `https://www.julia-vscode.org/docs/previews/PR##`, where `##` is your PR's number.
13+
You can see the generated documentation on `https://www.julia-vscode.org/docs/previews/PR##`, where `##` is your PR's number.
1514

1615
Please refer to the VS Code contributing guide [here](https://github.com/microsoft/vscode-docs/blob/main/CONTRIBUTING.md) for details on best practices and how to refer to VS Code correctly.
1716

docs/src/userguide/compilesysimage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ This file should be named `./.vscode/JuliaSysimage.toml` and be placed under the
1616

1717
```
1818
[sysimage]
19-
exclude=["Pkg1", "Pkg2"] # Additional packages to be exlucded in the system image
19+
exclude=["Pkg1", "Pkg2"] # Additional packages to be excluded in the system image
2020
statements_files=["relative/path/to/precompile_statements_file.jl", ]
2121
execution_files="relative/path/to/precompile_excecution_file.jl"
2222
```
23-
The packages to be excluded have to be seperated by commas, each with quotation marks and all inside square brackets.
24-
The path should be relative to the currently active folder, which can be selected by the command `File: Open Folder...`. The statement or excecution files can be given as a single relative path, or as a list of relative paths.
23+
The packages to be excluded have to be separated by commas, each with quotation marks and all inside square brackets.
24+
The path should be relative to the currently active folder, which can be selected by the command `File: Open Folder...`. The statement or execution files can be given as a single relative path, or as a list of relative paths.
2525

26-
The statement files should contain precompile statements of the form `precompile(Tuple{typeof(Base.sin), Float64})`, and the excecution files should contain function calls for which the methods should be compiled.
26+
The statement files should contain precompile statements of the form `precompile(Tuple{typeof(Base.sin), Float64})`, and the execution files should contain function calls for which the methods should be compiled.
2727

2828
The build task creates a sysimage that includes all packages in the current Julia environment. This sysimage is saved in the same folder where the `Project.toml` and `Manifest.toml` of the current Julia environment are stored. The name of the sysimage file will be `JuliaSysimage.dll` (Windows) or `JuliaSysimage.so`.
2929

docs/src/userguide/linter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
All Julia code in the workspace is statically linted. You can disable that feature with the `julia.lint.run` setting or configure it via various options with the `julia.lint.` prefix.
44

55
## Runtime diagnostics
6-
Packages like [JET.jl](https://github.com/aviatesk/JET.jl) can analyze code at runtime (for some defintion of "runtime"):
6+
Packages like [JET.jl](https://github.com/aviatesk/JET.jl) can analyze code at runtime (for some definition of "runtime"):
77
![jet](../images/jet.png)
88

99
You can opt out of this feature with the `julia.showRuntimeDiagnostics` setting. Use `Julia: Clear Runtime Diagnostics` or `Julia: Clear Runtime Diagnostics by Provider` to clear the displayed diagnostics.

docs/src/userguide/runningcode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ This command runs the entire content of the currently active file in the Julia R
5656

5757
### Julia: Run File in New Process
5858

59-
Sometimes it's desirable to run your code in a new process (e.g. if you want to be absolutely sure that no state from previosuly run code interferes), so this command will spawn a new Julia process and run the active file in it.
59+
Sometimes it's desirable to run your code in a new process (e.g. if you want to be absolutely sure that no state from previously run code interferes), so this command will spawn a new Julia process and run the active file in it.

0 commit comments

Comments
 (0)