Skip to content

Commit

Permalink
Update external URLs failing in build (#521)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhagenson committed Dec 10, 2023
1 parent d6493ec commit 7f1f760
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/testing/ponycheck.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class _ListReverseOneProperty is Property1[Array[USize]]

## Integration with PonyTest

PonyCheck properties need to be executed. The test runner for PonyCheck is [PonyTest](https://stdlib.ponylang.io/pony_test--index). To integrate [`Property1`](https://stdlib.ponylang.io/pony_check-Property1) into [PonyTest](https://stdlib.ponylang.io/pony_test--index), `Property1` needs to be wrapped inside a [`Property1UnitTest`](hhttps://stdlib.ponylang.io/pony_check-Property1UnitTest) and passed to the PonyTest `apply` method as a regular PonyTest [`UnitTest`](https://stdlib.ponylang.io/pony_test-UnitTest):
PonyCheck properties need to be executed. The test runner for PonyCheck is [PonyTest](https://stdlib.ponylang.io/pony_test--index). To integrate [`Property1`](https://stdlib.ponylang.io/pony_check-Property1) into [PonyTest](https://stdlib.ponylang.io/pony_test--index), `Property1` needs to be wrapped inside a [`Property1UnitTest`](https://stdlib.ponylang.io/pony_check-Property1UnitTest) and passed to the PonyTest `apply` method as a regular PonyTest [`UnitTest`](https://stdlib.ponylang.io/pony_test-UnitTest):

```pony
use "pony_test"
Expand Down
2 changes: 1 addition & 1 deletion docs/types/at-a-glance.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The Pony type system offers a lot of guarantees, even more than other statically
* Your program will never deadlock.
* Your code will always be capabilities-secure.
* All message passing is
[causal](https://courses.cs.vt.edu/~cs5204/fall00/causal.html). (Not **casual**!)
[causal](https://web.archive.org/web/20221206095540/https://courses.cs.vt.edu/~cs5204/fall00/causal.html). (Not **casual**!)

Some of those will make sense right now. Some of them may not mean much to you yet (like capabilities-security and causal messaging), but we'll get to those concepts later on.

Expand Down

0 comments on commit 7f1f760

Please sign in to comment.