diff --git a/Readme.md b/Readme.md index 939c98f4..23b26958 100644 --- a/Readme.md +++ b/Readme.md @@ -45,9 +45,8 @@ int main() { /* Set the bold property for the format */ format_set_bold(format); - /* Change the column widths for clarity. */ + /* Change the column width for clarity. */ worksheet_set_column(worksheet, 0, 0, 20, NULL); - worksheet_set_column(worksheet, 1, 1, 2, NULL); /* Write some simple text. */ worksheet_write_string(worksheet, 0, 0, "Hello", NULL); diff --git a/docs/images/demo.png b/docs/images/demo.png index 090a4cd4..c6bdb325 100644 Binary files a/docs/images/demo.png and b/docs/images/demo.png differ diff --git a/docs/images/images.png b/docs/images/images.png index eac467be..378b0f8c 100644 Binary files a/docs/images/images.png and b/docs/images/images.png differ diff --git a/examples/demo.c b/examples/demo.c index 8e9897b8..1a2d52d0 100644 --- a/examples/demo.c +++ b/examples/demo.c @@ -19,9 +19,8 @@ int main() { /* Set the bold property for the format */ format_set_bold(format); - /* Change the column widths for clarity. */ + /* Change the column width for clarity. */ worksheet_set_column(worksheet, 0, 0, 20, NULL); - worksheet_set_column(worksheet, 1, 1, 2, NULL); /* Write some simple text. */ worksheet_write_string(worksheet, 0, 0, "Hello", NULL); diff --git a/examples/logo.png b/examples/logo.png index fcf56dd8..8a8df319 100644 Binary files a/examples/logo.png and b/examples/logo.png differ