diff options
author | akfm <akfm.sato@gmail.com> | 2021-01-25 15:14:25 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-25 15:14:25 +0900 |
commit | cf688cb40850fa3a7c48105a69ed4d4eb62425b8 (patch) | |
tree | 1915dcff4a0e96da2a00f6a18108c2fccca3f798 /cli/standalone.rs | |
parent | 66e99d349b31f5cd30b868d80ebdab6ba749fd96 (diff) |
docs(cli): fix return type in comment (#9248)
Diffstat (limited to 'cli/standalone.rs')
-rw-r--r-- | cli/standalone.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/standalone.rs b/cli/standalone.rs index c675d126a..8e596e5a6 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<String>, ) -> Result<Option<(Metadata, String)>, AnyError> { |