diff --git a/README.md b/README.md index c63e25a..0bf2aa6 100644 --- a/README.md +++ b/README.md @@ -536,7 +536,7 @@ You can also check the presence of a particular API function this way (note the ``` if ui.show_list_dialog then - ui:show_text("list dialog supported") + ui:show_text("list dialog is supported") else ui:show_text("list dialog is not supported") end diff --git a/samples/check-new-api-sample.lua b/samples/check-new-api-sample.lua index 30092dd..60f8cef 100644 --- a/samples/check-new-api-sample.lua +++ b/samples/check-new-api-sample.lua @@ -1,6 +1,6 @@ function on_resume() if ui.show_list_dialog then - ui:show_text("list dialog supported") + ui:show_text("list dialog is supported") else ui:show_text("list dialog is not supported") end