From b80acf2bfb4e5de438b4b9df5b2a72aa00db1ec4 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Sat, 14 Jan 2023 19:25:38 +0700 Subject: [PATCH] replace CXX term with C++ in description --- README.md | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1941a7e..362e2fd 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ For more information, see [action.yml](./action.yml) and [GitHub Actions guide]( | `targets` | Multiple strings | List of build targets. Could be specified more than one. Separate each target with a space or a new line. | | `generator` | String | Build system generator of the CMake project. | | `c-compiler` | String | Preferred executable for compiling C language files. | -| `cxx-compiler` | String | Preferred executable for compiling CXX language files. | +| `cxx-compiler` | String | Preferred executable for compiling C++ language files. | | `c-flags` | Multiple strings | Additional flags passed when compiling C language files. Could be specified more than one. Separate each flag with a space or a new line. | | `cxx-flags` | Multiple strings | Additional flags passed when compiling C++ language files. Could be specified more than one. Separate each flag with a space or a new line. | | `args` | Multiple strings | Additional arguments passed during the CMake configuration. Could be specified more than one. Separate each target with a space or a new line. | diff --git a/action.yml b/action.yml index 35b63a4..ff2b7c4 100644 --- a/action.yml +++ b/action.yml @@ -23,7 +23,7 @@ inputs: description: Preferred executable for compiling C language files required: false cxx-compiler: - description: Preferred executable for compiling CXX language files + description: Preferred executable for compiling C++ language files required: false c-flags: description: Additional flags passed when compiling C language files