Skip to content

Commit

Permalink
Remove outdated disclaimer
Browse files Browse the repository at this point in the history
  • Loading branch information
voltrevo committed Jul 3, 2023
1 parent 0366d09 commit 31b62c9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions website/src/playground/files/root/examples/quickSort.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ function quickSort<T>(vals: T[], cmp: (a: T, b: T) => number) {
// Demonstrates the ability to do in-place updates in ValueScript.
//
// There's only one reference to `vals`, so we can mutate it in-place
// without violating value semantics. (Disclaimer: ValueScript doesn't
// yet know that it can drop the reference to `x` from the call site,
// so there is one copy of the array.)
// without violating value semantics.
//
// More on quickSort:
// https://www.youtube.com/watch?v=Hoixgm4-P4M
Expand Down

0 comments on commit 31b62c9

Please sign in to comment.