From e64a1dfc36a18de40af6563f9720a9fb1e42cb1b Mon Sep 17 00:00:00 2001 From: RMZeroFour Date: Wed, 10 Apr 2024 00:20:12 +0530 Subject: [PATCH] Fix typo in HelloTextTableShape makefile The HelloTextTableShape example, which was recently ported to C++, has a small typo in line #64 of the Makefile. It gives the user the command to run the example, but it was missing an 'e' at the end. Change-Id: I29af45f21ff78dbda42e5bd9e25e44f06536f7c3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165915 Tested-by: Jenkins Reviewed-by: Hossein --- .../DevelopersGuide/FirstSteps/HelloTextTableShape/cxx/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape/cxx/Makefile b/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape/cxx/Makefile index 1ecaaac747d5..121feca07d61 100644 --- a/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape/cxx/Makefile +++ b/odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape/cxx/Makefile @@ -61,7 +61,7 @@ HelloTextTableShape: $(OUT_BIN)/$(APP_NAME)$(EXE_EXT) @echo -------------------------------------------------------------------------------- @echo Please use the following command to execute the example! @echo - - @echo $(MAKE) HelloTextTableShap.run + @echo $(MAKE) HelloTextTableShape.run @echo -------------------------------------------------------------------------------- %.run: $(OUT_BIN)/HelloTextTableShape$(EXE_EXT)