Skip to content

Commit 3cc1be7

Browse files
committed
remove capitalization
1 parent 2b3b71e commit 3cc1be7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lectures/cons_smooth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ print('check a_T+1=0:',
305305
The graphs below show paths of non-financial income, consumption, and financial assets.
306306
307307
```{code-cell} ipython3
308-
# Sequence Length
308+
# Sequence length
309309
T = cs_model.T
310310
311311
fig, axes = plt.subplots(1, 2, figsize=(12,5))
@@ -355,7 +355,7 @@ def plot_cs(model, # consumption-smoothing model
355355
# Compute optimal consumption
356356
c_seq, a_seq, h0 = compute_optimal(model, a0, y_seq)
357357
358-
# Sequence Length
358+
# Sequence length
359359
T = cs_model.T
360360
361361
fig, axes = plt.subplots(1, 2, figsize=(12,5))

lectures/tax_smooth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ print('check B_S+1=0:',
313313
The graphs below show paths of government expenditures, tax collections, and government debt.
314314
315315
```{code-cell} ipython3
316-
# Sequence Length
316+
# Sequence length
317317
S = tax_model.S
318318
319319
fig, axes = plt.subplots(1, 2, figsize=(12,5))
@@ -367,7 +367,7 @@ def plot_ts(model, # tax-smoothing model
367367
# Compute optimal tax path
368368
T_seq, B_seq, h0 = compute_optimal(model, B0, G_seq)
369369
370-
# Sequence Length
370+
# Sequence length
371371
S = tax_model.S
372372
373373
fig, axes = plt.subplots(1, 2, figsize=(12,5))

0 commit comments

Comments
 (0)