From cf688cb40850fa3a7c48105a69ed4d4eb62425b8 Mon Sep 17 00:00:00 2001 From: akfm Date: Mon, 25 Jan 2021 15:14:25 +0900 Subject: [PATCH] docs(cli): fix return type in comment (#9248) --- cli/standalone.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/standalone.rs b/cli/standalone.rs index c675d126af..8e596e5a62 100644 --- a/cli/standalone.rs +++ b/cli/standalone.rs @@ -53,7 +53,7 @@ pub const MAGIC_TRAILER: &[u8; 8] = b"d3n0l4nd"; /// - a u64 pointer to JSON metadata (serialized flags) embedded in the binary /// These are dereferenced, and the bundle is executed under the configuration /// specified by the metadata. If no magic trailer is present, this function -/// exits with `Ok(())`. +/// exits with `Ok(None)`. pub fn extract_standalone( args: Vec, ) -> Result, AnyError> {