diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-03-05 21:41:25 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-03-05 21:41:25 +0100 |
commit | 90233c3cf84453424f1de6dd68f19255ece26f1d (patch) | |
tree | d1108e9f3a8a30e87a1a4d7ac431fab7ee9da6b0 /examples | |
parent | 7e50574500e4c33d8f12a5cb4893249f29e311f0 (diff) | |
download | juicebox-asm-90233c3cf84453424f1de6dd68f19255ece26f1d.tar.gz juicebox-asm-90233c3cf84453424f1de6dd68f19255ece26f1d.zip |
Updated doc comments
Diffstat (limited to 'examples')
-rw-r--r-- | examples/fib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/fib.rs b/examples/fib.rs index c4233da..7acbb50 100644 --- a/examples/fib.rs +++ b/examples/fib.rs @@ -1,5 +1,5 @@ use juicebox_asm::prelude::*; -use juicebox_asm::rt::Runtime; +use juicebox_asm::Runtime; const fn fib_rs(n: u64) -> u64 { match n { |