Skip to content

Commit b2d629f

Browse files
authored
Merge pull request #87 from QuantEcon/issue79
Issue79
2 parents cd74f54 + aa97fc7 commit b2d629f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lectures/dynamic_programming_squared/dyn_stack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ It follows that the follower firm 1 faces law of motion
841841
\begin{bmatrix} \tilde y_{t+1} \\
842842
q_{1t+1} \end{bmatrix} = \begin{bmatrix} A - BF & 0 \\
843843
0 & 1 \end{bmatrix} \begin{bmatrix} \tilde y_{t} \\
844-
q_{1t} \end{bmatrix} + \begin{bmatrix} 0 \cr 1 \end{bmatrix} x_t
844+
q_{1t} \end{bmatrix} + \begin{bmatrix} 0 \\ 1 \end{bmatrix} x_t
845845
```
846846

847847
This specfification assures that from the point of the view of a firm 1,

lectures/software_engineering/testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ By default, Travis will compile and test your project (i.e., "build" it) for new
535535

536536
We can see ours by opening it in Atom
537537

538-
```
538+
````
539539
# Documentation: http://docs.travis-ci.com/user/languages/julia/
540540
language: julia
541541
os:
@@ -552,7 +552,7 @@ notifications:
552552
email: false
553553
after_success:
554554
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
555-
```
555+
````
556556

557557
This is telling Travis to build the project in Julia, on OSX and Linux, using Julia v1.1 and the latest development build ("nightly").
558558

lectures/software_engineering/tools_editors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ The most feature-rich one for Julia development is [Atom](https://atom.io/), wit
167167
There are several reasons to use a text editor like Atom, including
168168

169169
(upgrading_julia)=
170-
#### Upgrading Julia
170+
### Upgrading Julia
171171

172172
To get a new release working with Jupyter, run (in the new version's REPL)
173173

0 commit comments

Comments
 (0)