aboutsummaryrefslogtreecommitdiffstats
path: root/test/manual/cedet/tests/testpolymorph.cpp
diff options
context:
space:
mode:
authorStefan Kangas2022-12-01 16:36:09 +0100
committerStefan Kangas2022-12-01 16:36:09 +0100
commit70ecdebc92c879af90f2d25a2b751d1cc4f3f80d (patch)
tree27d9ebd0090f107cb4381b8155e08097c988a471 /test/manual/cedet/tests/testpolymorph.cpp
parenta86ccb5f9dd4a5fe8e6af974d7f577e7b5d0a8d4 (diff)
downloademacs-70ecdebc92c879af90f2d25a2b751d1cc4f3f80d.tar.gz
emacs-70ecdebc92c879af90f2d25a2b751d1cc4f3f80d.zip
; Fix typos (don't abbreviate "with" or "without")
Diffstat (limited to 'test/manual/cedet/tests/testpolymorph.cpp')
-rw-r--r--test/manual/cedet/tests/testpolymorph.cpp10
1 files changed, 5 insertions, 5 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 @@
22 22
23#include <cmath> 23#include <cmath>
24 24
25// Test 1 - Functions w/ prototypes 25// Test 1 - Functions with prototypes
26namespace proto { 26namespace proto {
27 27
28 int pt_func1(int arg1); 28 int pt_func1(int arg1);
@@ -32,7 +32,7 @@ namespace proto {
32 32
33} 33}
34 34
35// Test 2 - Functions w/ different arg lists. 35// Test 2 - Functions with different arg lists.
36namespace fcn_poly { 36namespace fcn_poly {
37 37
38 int pm_func(void) { 38 int pm_func(void) {
@@ -50,7 +50,7 @@ namespace fcn_poly {
50 50
51} 51}
52 52
53// Test 3 - Methods w/ different arg lists. 53// Test 3 - Methods with different arg lists.
54class meth_poly { 54class meth_poly {
55public: 55public:
56 int pm_meth(void) { 56 int pm_meth(void) {
@@ -68,7 +68,7 @@ public:
68 68
69}; 69};
70 70
71// Test 4 - Templates w/ partial specifiers. 71// Test 4 - Templates with partial specifiers.
72namespace template_partial_spec { 72namespace template_partial_spec {
73 template <typename T> class test 73 template <typename T> class test
74 { 74 {
@@ -83,7 +83,7 @@ namespace template_partial_spec {
83 }; 83 };
84} 84}
85 85
86// Test 5 - Templates w/ full specialization which may or may not share 86// Test 5 - Templates with full specialization which may or may not share
87// common functions. 87// common functions.
88namespace template_full_spec { 88namespace template_full_spec {
89 template <typename T> class test 89 template <typename T> class test