Skip to content

Commit

Permalink
Fix a couple more broken links (#540)
Browse files Browse the repository at this point in the history
  • Loading branch information
penelopeysm authored Oct 21, 2024
1 parent 8238df4 commit e00f79d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ probabilistic-pca: tutorials/11-probabilistic-pca
gplvm: tutorials/12-gplvm
seasonal-time-series: tutorials/13-seasonal-time-series
contexts: tutorials/16-contexts
miniature: tutorial/14-minituring
minituring: tutorial/14-minituring
contributing-guide: tutorials/docs-01-contributing-guide
using-turing-abstractmcmc: tutorials/docs-04-for-developers-abstractmc-turing
using-turing-compiler: tutorials/docs-05-for-developers-compiler
Expand Down
4 changes: 2 additions & 2 deletions tutorials/16-contexts/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ using Pkg;
Pkg.instantiate();
```

In the [Mini Turing](../14-minituring) tutorial we developed a miniature version of the Turing language, to illustrate its core design. A passing mention was made of contexts. In this tutorial we develop that aspect of our mini Turing language further to demonstrate how and why contexts are an important part of Turing's design.
In the [Mini Turing]({{< meta minituring >}}) tutorial we developed a miniature version of the Turing language, to illustrate its core design. A passing mention was made of contexts. In this tutorial we develop that aspect of our mini Turing language further to demonstrate how and why contexts are an important part of Turing's design.

# Mini Turing expanded, now with more contexts

If you haven't read [Mini Turing](../14-minituring) yet, you should do that first. We start by repeating verbatim much of the code from there. Define the type for holding values for variables:
If you haven't read [Mini Turing]({{< meta minituring >}}t) yet, you should do that first. We start by repeating verbatim much of the code from there. Define the type for holding values for variables:

```{julia}
import MacroTools, Random, AbstractMCMC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ using Pkg;
Pkg.instantiate();
```

Prerequisite: [Interface guide](../{{<meta using-turing-interface>}}).
Prerequisite: [Interface guide]({{<meta using-turing-interface>}}).

## Introduction

Expand Down

0 comments on commit e00f79d

Please sign in to comment.