From 27cd0d068f4342c246a561e8380c8f52f44d47e3 Mon Sep 17 00:00:00 2001 From: jonesmarvin8 <83104039+jonesmarvin8@users.noreply.github.com> Date: Wed, 21 Jan 2026 18:31:08 -0500 Subject: [PATCH] minor fix --- examples/program_deployment/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/program_deployment/README.md b/examples/program_deployment/README.md index b026d226..b0d59151 100644 --- a/examples/program_deployment/README.md +++ b/examples/program_deployment/README.md @@ -219,7 +219,7 @@ This is the account that the program will claim and write data into. let bytecode: Vec = std::fs::read(program_path).unwrap(); let program = Program::new(bytecode).unwrap(); ``` -The Risc0 ELF is read from dvsk and wrapped in a Program object, which can be used to compute the program ID. The ID is used by the node to identify which program is invoked by the transaction. +The Risc0 ELF is read from disk and wrapped in a Program object, which can be used to compute the program ID. The ID is used by the node to identify which program is invoked by the transaction. ### 4. Preparing the instruction data