diff --git a/doc/using-command-line.xml b/doc/using-command-line.xml index 73c42504..d0681de0 100644 --- a/doc/using-command-line.xml +++ b/doc/using-command-line.xml @@ -44,7 +44,7 @@ where: There's a straightforward relationship with the C API: compare this to - the API docs for vips_rot(), for example. + the API docs for vips_rot(). @@ -83,7 +83,7 @@ VipsOperation (operation), operations Optional arguments Many operations take optional arguments. You can supply these as - command-line options, for example: + command-line options. For example: $ vips gamma @@ -120,10 +120,9 @@ $ vips gamma k2.jpg x.jpg --exponent 0.42 Array arguments - Some operations take arrays of values as arguments, for example, + Some operations take arrays of values as arguments. For example, vips_affine() needs an array of four numbers for the - 2x2 transform matrix. You pass arrays as space-separated lists, for - example: + 2x2 transform matrix. You pass arrays as space-separated lists: $ vips affine k2.jpg x.jpg "2 0 0 1" @@ -151,7 +150,7 @@ $ vips bandjoin "k2.jpg k4.jpg" x.tif $ vips -l foreign - Then get a list of the options a format supports with, for example: + Then get a list of the options a format supports with: $ vips jpegsave @@ -160,7 +159,7 @@ $ vips jpegsave You can pass options to the implicit load and save operations enclosed - in square brackets after the filename. For example: + in square brackets after the filename: vips affine k2.jpg x.jpg[Q=90,strip] "2 0 0 1"