diff options
| author | gingerBill <bill@gingerbill.org> | 2024-01-28 21:39:18 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-01-28 21:39:18 +0000 |
| commit | d95c28f41bdee1cd2092e008862819e408013940 (patch) | |
| tree | 8ad6f11f15a4cc56ee15db55609a6f5d0f65ac93 | |
| parent | e57224d6e4f2eb8894837319c9ff626a2a9ea5f5 (diff) | |
Fix demo docs
| -rw-r--r-- | examples/demo/demo.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index 239e28ee0..b2736ffcd 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -2519,7 +2519,7 @@ matrix_type :: proc() { // This is because matrices are stored as values (not a reference type), and thus operations on them will // be stored on the stack. Restricting the maximum element count minimizing the possibility of stack overflows. - // Built-in Procedures (Compiler Level) + // 'intrinsics' Procedures (Compiler Level) // transpose(m) // transposes a matrix // outer_product(a, b) @@ -2540,13 +2540,13 @@ matrix_type :: proc() { // conj(x) // conjugates the elements of a matrix for complex element types only - // Built-in Procedures (Runtime Level) (all square matrix procedures) + // Procedures in "core:math/linalg" and related (Runtime Level) (all square matrix procedures) // determinant(m) // adjugate(m) // inverse(m) // inverse_transpose(m) // hermitian_adjoint(m) - // matrix_trace(m) + // trace(m) // matrix_minor(m) } |