summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2012-11-18 19:24:20 +0000
committerRichard W.M. Jones <rjones@redhat.com>2012-11-18 19:24:20 +0000
commit6e5916e0f4da885b61350e1edc96e6173a5ea324 (patch)
tree39f11fb69900a089c7887ba0748a6953a69a6112
parent6483c506b91d0093af96f361d6756853fac26972 (diff)
downloadlibguestfs-6e5916e0f4da885b61350e1edc96e6173a5ea324.tar.gz
libguestfs-6e5916e0f4da885b61350e1edc96e6173a5ea324.tar.xz
libguestfs-6e5916e0f4da885b61350e1edc96e6173a5ea324.zip
lua: examples: Boolean true shouldn't have quotes around it.
-rw-r--r--lua/examples/guestfs-lua.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/examples/guestfs-lua.pod b/lua/examples/guestfs-lua.pod
index b7d167c9..c8afb887 100644
--- a/lua/examples/guestfs-lua.pod
+++ b/lua/examples/guestfs-lua.pod
@@ -8,7 +8,7 @@ guestfs-lua - How to use libguestfs from Lua
require "guestfs"
g = Guestfs.create ()
- g:add_drive ("test.img", { format = "raw", readonly = "true" })
+ g:add_drive ("test.img", { format = "raw", readonly = true })
g:launch ()
devices = g:list_devices ()
g:close ()
@@ -55,7 +55,7 @@ supplying the optional arguments.
or:
- g:add_drive ("test.img", { format = "raw", readonly = "true" })
+ g:add_drive ("test.img", { format = "raw", readonly = true })
=head2 64 BIT VALUES