summaryrefslogtreecommitdiff
path: root/test/manual/cedet/tests
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-12-01 16:36:09 +0100
committerStefan Kangas <stefankangas@gmail.com>2022-12-01 16:36:09 +0100
commit70ecdebc92c879af90f2d25a2b751d1cc4f3f80d (patch)
tree27d9ebd0090f107cb4381b8155e08097c988a471 /test/manual/cedet/tests
parenta86ccb5f9dd4a5fe8e6af974d7f577e7b5d0a8d4 (diff)
downloademacs-70ecdebc92c879af90f2d25a2b751d1cc4f3f80d.tar.gz
emacs-70ecdebc92c879af90f2d25a2b751d1cc4f3f80d.tar.bz2
emacs-70ecdebc92c879af90f2d25a2b751d1cc4f3f80d.zip
; Fix typos (don't abbreviate "with" or "without")
Diffstat (limited to 'test/manual/cedet/tests')
-rw-r--r--test/manual/cedet/tests/testpolymorph.cpp10
-rw-r--r--test/manual/cedet/tests/testsppreplace.c4
-rw-r--r--test/manual/cedet/tests/testsppreplaced.c4
3 files changed, 9 insertions, 9 deletions
diff --git a/test/manual/cedet/tests/testpolymorph.cpp b/test/manual/cedet/tests/testpolymorph.cpp
index ba64e39a7a5..cfe44ecc4d3 100644
--- a/test/manual/cedet/tests/testpolymorph.cpp
+++ b/test/manual/cedet/tests/testpolymorph.cpp
@@ -22,7 +22,7 @@
#include <cmath>
-// Test 1 - Functions w/ prototypes
+// Test 1 - Functions with prototypes
namespace proto {
int pt_func1(int arg1);
@@ -32,7 +32,7 @@ namespace proto {
}
-// Test 2 - Functions w/ different arg lists.
+// Test 2 - Functions with different arg lists.
namespace fcn_poly {
int pm_func(void) {
@@ -50,7 +50,7 @@ namespace fcn_poly {
}
-// Test 3 - Methods w/ different arg lists.
+// Test 3 - Methods with different arg lists.
class meth_poly {
public:
int pm_meth(void) {
@@ -68,7 +68,7 @@ public:
};
-// Test 4 - Templates w/ partial specifiers.
+// Test 4 - Templates with partial specifiers.
namespace template_partial_spec {
template <typename T> class test
{
@@ -83,7 +83,7 @@ namespace template_partial_spec {
};
}
-// Test 5 - Templates w/ full specialization which may or may not share
+// Test 5 - Templates with full specialization which may or may not share
// common functions.
namespace template_full_spec {
template <typename T> class test
diff --git a/test/manual/cedet/tests/testsppreplace.c b/test/manual/cedet/tests/testsppreplace.c
index 54ae3f0323e..d255c202d35 100644
--- a/test/manual/cedet/tests/testsppreplace.c
+++ b/test/manual/cedet/tests/testsppreplace.c
@@ -66,7 +66,7 @@ int myFcn3 (int a, int b);
MULTI_ARGS(ma_struct, moose, penguin, emu);
-/* TEST: Macro w/ args, but no body. */
+/* TEST: Macro with args, but no body. */
#define NO_BODY(name)
NO_BODY(Moose);
@@ -78,7 +78,7 @@ int not_with_args_fcn NOT_WITH_ARGS
{
}
-/* TEST: macro w/ continuation. */
+/* TEST: macro with continuation. */
#define WITH_CONT \
continuation_symbol
diff --git a/test/manual/cedet/tests/testsppreplaced.c b/test/manual/cedet/tests/testsppreplaced.c
index c359fa7d690..c98349174e5 100644
--- a/test/manual/cedet/tests/testsppreplaced.c
+++ b/test/manual/cedet/tests/testsppreplaced.c
@@ -55,14 +55,14 @@ int myFcn3 (int a, int b);
/* TEST: Multiple args to a macro. */
struct ma_struct { int moose; int penguin; int emu; };
-/* TEST: Macro w/ args, but no body. */
+/* TEST: Macro with args, but no body. */
/* TEST: Not a macro with args, but close. */
int not_with_args_fcn (moose)
{
}
-/* TEST: macro w/ continuation. */
+/* TEST: macro with continuation. */
int continuation_symbol () { };
/* TEST: macros in a macro - tail processing */