Skip to content

Commit b1c1be1

Browse files
committed
typos
1 parent 5842377 commit b1c1be1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ including lecture notes, lab instructions, and homeworks. The official format
4040
of the course is 2+2 (2h lectures/2h labs per week) for 4 credits.
4141

4242
The official course code is: **B0M36SPJ** and the timetable for the winter semester
43-
2021 can be found [here](https://fel.cvut.cz/cz/education/rozvrhy-ng.B221/public/html/predmety/69/85/p6985906.html).
43+
2022 can be found [here](https://fel.cvut.cz/cz/education/rozvrhy-ng.B221/public/html/predmety/69/85/p6985906.html).
4444

4545
The course will be graded based on points from your homework (**max. 20 points**)
4646
and points from a [final project](@ref final_project) (**max. 30 points**).

docs/src/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
In order to participate in the course, everyone should install a recent version of Julia together with some text editor of choice. Furthermore during the course we will introduce some best practices of creating/testing and distributing your own Julia code, for which we will require a GitHub account.
33

44
## Julia IDE
5-
There is no one way to install/develop and run Julia, which may be strange users coming from MATLAB, but for users of general purpose languages such as Python, C++ this is quite common. As of 2020 the most widely adopted way is in combination with the [VSCode](https://code.visualstudio.com/) editor, for which there is an officially supported Julia [extension](https://www.julia-vscode.org/). Moreover this setup is the same as with our bachelor [course](https://github.com/JuliaTeachingCTU/Julia-for-Optimization-and-Learning), which has provided an extensive tutorial mainly in case of installation on Windows machines, [here](https://juliateachingctu.github.io/Julia-for-Optimization-and-Learning/stable/installation/julia/). If you are using any other supported platform, you can use the guide as well replacing some steps with your system specifics (having the `julia` executable in path or as an alias is a plus). When deciding which version to download we recommend the latest stable release as of August 2021, `1.6.x`, which has some quality of life improvements mainly with regards to readability of error messages.
5+
There is no one way to install/develop and run Julia, which may be strange users coming from MATLAB, but for users of general purpose languages such as Python, C++ this is quite common. As of 2020 the most widely adopted way is in combination with the [VSCode](https://code.visualstudio.com/) editor, for which there is an officially supported Julia [extension](https://www.julia-vscode.org/). Moreover this setup is the same as with our bachelor [course](https://github.com/JuliaTeachingCTU/Julia-for-Optimization-and-Learning), which has provided an extensive tutorial mainly in case of installation on Windows machines, [here](https://juliateachingctu.github.io/Julia-for-Optimization-and-Learning/stable/installation/julia/). If you are using any other supported platform, you can use the guide as well replacing some steps with your system specifics (having the `julia` executable in path or as an alias is a plus). When deciding which version to download we recommend the latest stable release as of September 2022, `1.8.x`.
66

77
Note that this setup is not a strict requirement for the lectures/labs and any other text editor with the option to send code to the terminal, such as Sublime Text, Vim+tmux or Atom will suffice (a major convenience when dealing with programming languages that support interactivity through a Read-Eval-Print Loop - REPL).
88

docs/src/lecture_01/basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Function properties:
5757
- return value
5858
- the last line of the function declaration,
5959
- ```return``` keyword
60-
- zeros cost abstraction
60+
- zero cost abstraction
6161

6262
### Different style of writing code
6363

0 commit comments

Comments
 (0)