Skip to content

Commit

Permalink
Fix playground link
Browse files Browse the repository at this point in the history
  • Loading branch information
nilehmann committed Jan 2, 2025
1 parent 28ef136 commit b967534
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Online Demo

You can try `flux` [online at this site](https://flux.programming.systems)
You can try `flux` [online at this site](http://goto.ucsd.edu:8091/)

# Overview

Expand Down
2 changes: 1 addition & 1 deletion book/js/flux.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
window.fetch = (originalFetch => {
const fluxPlayground = "https://flux.programming.systems/play.rust-lang.org";
const fluxPlayground = "http://goto.ucsd.edu:8091/play.rust-lang.org";
return (url, options) => {
const redirected = url.replace(/https:\/\/play.rust-lang.org/, fluxPlayground);
return originalFetch(redirected, options);
Expand Down
2 changes: 1 addition & 1 deletion book/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ time.

See the **examples** -- listed in the summary on the left -- to learn about Refinement types and Rust.

You can try it online [here](https://flux.programming.systems).
You can try it online [here](http://goto.ucsd.edu:8091/).
2 changes: 1 addition & 1 deletion book/src/blog/01-introducing-flux.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Introducing Flux

[Online demo](https://flux.programming.systems/?example=refinements.rs)
[Online demo](http://goto.ucsd.edu:8091/?example=refinements.rs)

Types bring order to code. For example, if a variable `i:usize`
then we know `i` is a number that can be used to index a vector.
Expand Down
2 changes: 1 addition & 1 deletion book/src/blog/02-ownership.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Ownership in Flux

[Online demo](https://flux.programming.systems/?example=ownership.rs)
[Online demo](http://goto.ucsd.edu:8091/?example=ownership.rs)

[Previously][blog-intro] we saw how to refine basic Rust
types like `i32` and `bool` with *indices* and *constraints* to
Expand Down

0 comments on commit b967534

Please sign in to comment.