From fccf6929549abdaa7405b6d0f68187575f4e9300 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 3 Jul 2012 14:42:10 +0100 Subject: perl, python, ruby: Fix comments on call to close method. Make the comments consistent. Also make the Perl example call $g->close explicitly so it is consistent with the other examples. (cherry picked from commit 27ebf517fae972eee49ae5911a03fabe5f4b6e54) --- ruby/examples/create_disk.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ruby/examples') diff --git a/ruby/examples/create_disk.rb b/ruby/examples/create_disk.rb index 4e42cf6a..026ea2e7 100644 --- a/ruby/examples/create_disk.rb +++ b/ruby/examples/create_disk.rb @@ -54,4 +54,7 @@ g.mkdir("/foo") # the disk image. g.upload("/etc/resolv.conf", "/foo/resolv.conf") +# Note also that handles are automatically closed if they are +# reaped by the garbage collector. You only need to call close +# if you want to close the handle right away. g.close() -- cgit