Remove outdated disclaimer

This commit is contained in:
Andrew Morris
2023-07-03 12:39:49 +10:00
parent 0366d098c0
commit 31b62c9f7b

View File

@@ -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