diff options
author | Richard Jones <rjones@redhat.com> | 2009-04-14 14:20:47 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-04-14 14:20:47 +0100 |
commit | 5a563bbd9b2779640e3358f4bf1eaac622b58cae (patch) | |
tree | acb65379971732c5b0d8741b460cb6d5670cecf4 /src/generator.ml | |
parent | 98a43eba2fe2b18f5042138556c6beede0277223 (diff) | |
download | libguestfs-5a563bbd9b2779640e3358f4bf1eaac622b58cae.tar.gz libguestfs-5a563bbd9b2779640e3358f4bf1eaac622b58cae.tar.xz libguestfs-5a563bbd9b2779640e3358f4bf1eaac622b58cae.zip |
Typos and documentation updates.
Diffstat (limited to 'src/generator.ml')
-rwxr-xr-x | src/generator.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/generator.ml b/src/generator.ml index 1017ad1c..83098e7b 100755 --- a/src/generator.ml +++ b/src/generator.ml @@ -973,7 +973,7 @@ particular that the filename is not prepended to the output [], (* XXX how to test? *) "run a command from the guest filesystem", "\ -This calls runs a command from the guest filesystem. The +This call runs a command from the guest filesystem. The filesystem must be mounted, and must contain a compatible operating system (ie. something Linux, with the same or compatible processor architecture). @@ -1335,10 +1335,10 @@ let rec generate_actions_pod () = | RBool _ -> pr "This function returns a C truth value on success or -1 on error.\n\n" | RConstString _ -> - pr "This function returns a string or NULL on error. + pr "This function returns a string, or NULL on error. The string is owned by the guest handle and must I<not> be freed.\n\n" | RString _ -> - pr "This function returns a string or NULL on error. + pr "This function returns a string, or NULL on error. I<The caller must free the returned string after use>.\n\n" | RStringList _ -> pr "This function returns a NULL-terminated array of strings |