Skip to content

Commit f1b241d

Browse files
committed
2 parents f3202d5 + 4b25021 commit f1b241d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliateachingctu.github.io/Julia-for-Optimization-and-Learning/stable/)
99
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliateachingctu.github.io/Julia-for-Optimization-and-Learning/dev/)
1010

11-
This repository is supplementary material to the course **Julia for Optimization and Learning**, which is taught at the Czech Technical University in Prague. More information can be found on the [official course website](https://VaclavMacha.github.io/JuliaCourse/stable) or in the [course syllabus](http://bilakniha.cvut.cz/en/predmet6606806.html)
11+
This repository is supplementary material to the course **Julia for Optimization and Learning**, which is taught at the Czech Technical University in Prague. More information can be found on the [official course website](https://juliateachingctu.github.io/Julia-for-Optimization-and-Learning/stable/) or in the [course syllabus](http://bilakniha.cvut.cz/en/predmet6606806.html)

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,5 +152,5 @@ makedocs(;
152152
)
153153

154154
deploydocs(;
155-
repo="github.com/VaclavMacha/JuliaCourse.git",
155+
repo="github.com/JuliaTeachingCTU/Julia-for-Optimization-and-Learning.git"
156156
)

docs/src/lecture_02/scope.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ code_local = """
8080
s = 0
8181
for i = 1:10
8282
t = 1 + i # new local variable t
83-
local s = t # assigning a new value to the global variable
83+
local s = t # assigning a new value to the local variable
8484
end
8585
s
8686
"""

0 commit comments

Comments
 (0)