From 06506dcaf1fa535296f29c248c2babd738bc69e5 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Wed, 20 Dec 2023 09:49:09 +0100 Subject: tiny_vm: fix typos in doc comment --- examples/tiny_vm.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/tiny_vm.rs') diff --git a/examples/tiny_vm.rs b/examples/tiny_vm.rs index 992b684..d203bde 100644 --- a/examples/tiny_vm.rs +++ b/examples/tiny_vm.rs @@ -1,9 +1,9 @@ //! TinyVm example. //! -//! This example introduces as simple 16 bit virtual machine the [`TinyVm`]. The VM consits of -//! three registers defined in [`TinyReg`], a separate _data_ and _insutrction_ memory and a small +//! This example introduces a simple 16 bit virtual machine the [`TinyVm`]. The VM consists of +//! three registers defined in [`TinyReg`], a separate _data_ and _instruction_ memory and a small //! set of instructions [`TinyInsn`], sufficient to implement a guest program to compute the -//! fiibonacci sequence. +//! Fibonacci sequence. //! //! The `TinyVm` implements a simple _just-in-time (JIT)_ compiler to demonstrate the //! [`juicebox_asm`] crate. Additionally, it implements a reference _interpreter_. -- cgit v1.2.3