diff options
author | RMZeroFour <ritobroto04@gmail.com> | 2024-04-10 00:20:12 +0530 |
---|---|---|
committer | Hossein <hossein@libreoffice.org> | 2024-04-09 22:21:44 +0200 |
commit | e64a1dfc36a18de40af6563f9720a9fb1e42cb1b (patch) | |
tree | a2171c34acd242d01eacf04d21dc37b6c3d31c64 /odk/examples/DevelopersGuide/FirstSteps | |
parent | 2dbd0acb88be751c05648167518dbc60ba75bceb (diff) |
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 <hossein@libreoffice.org>
Diffstat (limited to 'odk/examples/DevelopersGuide/FirstSteps')
-rw-r--r-- | odk/examples/DevelopersGuide/FirstSteps/HelloTextTableShape/cxx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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) |