File: fix-typos.patch

package info (click to toggle)
cyphesis-cpp 0.6.2-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 10,752 kB
  • sloc: cpp: 94,194; xml: 40,196; python: 8,717; sh: 4,164; makefile: 1,968; ansic: 753
file content (273 lines) | stat: -rw-r--r-- 10,192 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
Description: Fix typos
 Courtesy of lintian, will not be needed after Cyphesis 0.6.2.
Origin: https://github.com/worldforge/cyphesis/pull/30
Last-Update: 2016-09-06

--- a/server/Admin.cpp
+++ b/server/Admin.cpp
@@ -301,7 +301,7 @@
               res, getId());
         return;
     } else {
-        error(op, "Unknow object type set", res, getId());
+        error(op, "Unknown object type set", res, getId());
         return;
     }
 }
--- a/rulesets/Py_Oplist.cpp
+++ b/rulesets/Py_Oplist.cpp
@@ -94,7 +94,7 @@
         }
         return (PyObject*)res;
     }
-    PyErr_SetString(PyExc_TypeError, "Unkown other in Oplist.num_add");
+    PyErr_SetString(PyExc_TypeError, "Unknown other in Oplist.num_add");
     return NULL;
 }
 
@@ -141,7 +141,7 @@
         Py_INCREF(self);
         return (PyObject*)self;
     }
-    PyErr_SetString(PyExc_TypeError, "Unkown other in Oplist.num_inplace_add");
+    PyErr_SetString(PyExc_TypeError, "Unknown other in Oplist.num_inplace_add");
     return NULL;
 }
 
--- a/rulesets/basic/mind/NPCMind.py
+++ b/rulesets/basic/mind/NPCMind.py
@@ -425,7 +425,7 @@
         if res:
             return self.add_importance(res['sub'].id,'>',res['obj'].id)
         else:
-            return self.interlinguish_warning(op,say,"Unkown assertion")
+            return self.interlinguish_warning(op,say,"Unknown assertion")
     def interlinguish_know_verb1_operation(self, op, say):
         """Handle a sentence of the form 'know subject predicate object'
 
--- a/rulesets/Py_Shape.cpp
+++ b/rulesets/Py_Shape.cpp
@@ -450,7 +450,7 @@
     }
 #endif // NDEBUG
     if (static_cast<size_t>(index) >= self->shape.s->size()) {
-        PyErr_SetString(PyExc_IndexError, "Number of corners exceded");
+        PyErr_SetString(PyExc_IndexError, "Number of corners exceeded");
         return 0;
     }
     PyShape * a = newPyArea();
@@ -474,7 +474,7 @@
     }
 #endif // NDEBUG
     if (static_cast<size_t>(index) >= self->shape.s->size()) {
-        PyErr_SetString(PyExc_IndexError, "Number of corners exceded");
+        PyErr_SetString(PyExc_IndexError, "Number of corners exceeded");
         return 0;
     }
     PyPoint3D * v = newPyPoint3D();
--- a/TODO
+++ b/TODO
@@ -633,7 +633,7 @@
 
  Both sight_move and sight_create update the map via the Python API
  when this could be more efficiently done in the C++ if the op
- handler wasn't overriden. Why not assume the python handler does not
+ handler wasn't overridden. Why not assume the python handler does not
  override?
 
  The overall concept of overriding from scripts and also from handlers
@@ -1613,7 +1613,7 @@
 instead - move the specialisation into the listeners.
 
 Does sightFooOperation etc. in BaseMind.h have to be virtual? I think not.
-Yes it does, as its overriden in some client code.
+Yes it does, as its overridden in some client code.
 
 CONTAINS could be some kind of spatial set of buckets for efficiency
 when doing collision detection, but if this is not to be true for all entities
--- a/common/globals.cpp
+++ b/common/globals.cpp
@@ -474,7 +474,7 @@
 
     getinstallprefix();
 
-    // Check if the config directory has been overriden at this point, as if
+    // Check if the config directory has been overridden at this point, as if
     // it has, that will affect loading the main config.
     readConfigItem("cyphesis", "confdir", etc_directory);
 
@@ -554,7 +554,7 @@
 {
     char * home = getenv("HOME");
 
-    // Write out any changes that have been overriden at user scope. It
+    // Write out any changes that have been overridden at user scope. It
     // may be a good idea to do this at shutdown.
     if (home != NULL) {
         global_conf->writeToFile(std::string(home) + "/.cyphesis.vconf", varconf::USER);
--- a/configure.ac
+++ b/configure.ac
@@ -458,7 +458,7 @@
     ],[ $READLINE_LIBS ]
 )
 
-AC_MSG_CHECKING([whether tar allows permissions to be overriden])
+AC_MSG_CHECKING([whether tar allows permissions to be overridden])
 if tar cf /dev/null --mode o+rX /dev/null 2> /dev/null ; then
     TAR_PERM_FLAGS="--mode o+rX"
     AC_MSG_RESULT([yes])
--- a/man/cyclient.1
+++ b/man/cyclient.1
@@ -25,7 +25,7 @@
 .SS "CLIENT OPTIONS"
 .PP
 The following options are present in the client section of the config file,
-and overriden by specifying the client section name on the command line.
+and overridden by specifying the client section name on the command line.
 .TP
 \fBpackage="define_world" \fR
 Python package which contains the client function.
@@ -40,7 +40,7 @@
 .SS "SERVER OPTIONS"
 .PP
 The following options are present in the cyphesis section of the config
-file, and overriden by specifying the cyphesis section name on the
+file, and overridden by specifying the cyphesis section name on the
 command line. These options apply to the server, but are also required
 by the client to ensure that the client can connect.
 .TP
--- a/man/cyclient.sgml
+++ b/man/cyclient.sgml
@@ -36,7 +36,7 @@
   <refsect2><title>Client Options</title>
    <para>
 The following options are present in the client section of the config file,
-and overriden by specifying the client section name on the command line.
+and overridden by specifying the client section name on the command line.
    </para>
    <variablelist>
 
@@ -78,7 +78,7 @@
   <refsect2><title>Server Options</title>
    <para>
 The following options are present in the cyphesis section of the config
-file, and overriden by specifying the cyphesis section name on the
+file, and overridden by specifying the cyphesis section name on the
 command line. These options apply to the server, but are also required
 by the client to ensure that the client can connect.
    </para>
--- a/man/cycmd.1
+++ b/man/cycmd.1
@@ -25,7 +25,7 @@
 .SS "CLIENT OPTIONS"
 .PP
 The following options used by \fBcycmd\fR are present in the
-client section of the config file, and overriden by specifying the client
+client section of the config file, and overridden by specifying the client
 section name on the command line.
 .TP
 \fBserverhost=hostname \fR
@@ -36,7 +36,7 @@
 .SS "SERVER OPTIONS"
 .PP
 The following options are present in the cyphesis section of the config
-file, and overriden by specifying the cyphesis section name on the
+file, and overridden by specifying the cyphesis section name on the
 command line. These options apply to the server, but are also required
 by the client to ensure that the client can connect.
 .TP
@@ -230,7 +230,7 @@
 .PP
 The third example shows server monitoring being enable, followed by information
 of a series of in-game operations. The flow of messages in while monitoring the
-server can be large. In order to supress the flow, the
+server can be large. In order to suppress the flow, the
 \fBunmonitor\fR command must be used.
 
 .nf
--- a/man/cycmd.sgml
+++ b/man/cycmd.sgml
@@ -36,7 +36,7 @@
   <refsect2><title>Client Options</title>
    <para>
 The following options used by <command>cycmd</command> are present in the
-client section of the config file, and overriden by specifying the client
+client section of the config file, and overridden by specifying the client
 section name on the command line.
    </para>
    <variablelist>
@@ -62,7 +62,7 @@
   <refsect2><title>Server Options</title>
    <para>
 The following options are present in the cyphesis section of the config
-file, and overriden by specifying the cyphesis section name on the
+file, and overridden by specifying the cyphesis section name on the
 command line. These options apply to the server, but are also required
 by the client to ensure that the client can connect.
    </para>
--- a/man/cyphesis.1
+++ b/man/cyphesis.1
@@ -19,7 +19,7 @@
 .SS "SERVER OPTIONS"
 .PP
 The following options are present in the cyphesis section of the config
-file, and overriden by specifying the cyphesis section name on the
+file, and overridden by specifying the cyphesis section name on the
 command line.
 .TP
 \fBdirectory="/path/to/server/data"\fR
--- a/man/cyphesis.sgml
+++ b/man/cyphesis.sgml
@@ -34,7 +34,7 @@
   <refsect2><title>Server Options</title>
    <para>
 The following options are present in the cyphesis section of the config
-file, and overriden by specifying the cyphesis section name on the
+file, and overridden by specifying the cyphesis section name on the
 command line.
    </para>
    <variablelist>
--- a/rulesets/Creator.cpp
+++ b/rulesets/Creator.cpp
@@ -203,7 +203,7 @@
 
 void Creator::mindLookOperation(const Operation & op, OpVector & res)
 {
-    // This overriden version allows the Creator to search the world for
+    // This overridden version allows the Creator to search the world for
     // entities by type or by name
     debug(std::cout << "Got look up from prived mind from [" << op->getFrom()
                << "] to [" << op->getTo() << "]" << std::endl << std::flush;);
--- a/server/EntityBuilder.cpp
+++ b/server/EntityBuilder.cpp
@@ -176,7 +176,7 @@
         // If a property is in the class it won't have been installed
         // as setAttr() checks
         prop->install(thing, J->first);
-        // The property will have been applied if it has an overriden
+        // The property will have been applied if it has an overridden
         // value, so we only apply it the value is still default.
         if (attrs.find(J->first) == attrs.end()) {
             prop->apply(thing);
--- a/server/EntityRuleHandler.cpp
+++ b/server/EntityRuleHandler.cpp
@@ -110,7 +110,7 @@
             backup_class_attributes = factory->m_classAttributes;
 
     // Copy the defaults from the parent. In populateEntityFactory this may be
-    // overriden with the defaults for this class.
+    // overridden with the defaults for this class.
     if (factory->m_parent != 0) {
         factory->m_attributes = factory->m_parent->m_attributes;
     } else {
--- a/tools/AdminClient.cpp
+++ b/tools/AdminClient.cpp
@@ -107,7 +107,7 @@
                             const MapType & rule)
 {
     if (m_uploadedRules.find(id) != m_uploadedRules.end()) {
-        std::cout << "Overriden rule " << id << " ignored."
+        std::cout << "Overridden rule " << id << " ignored."
                   << std::endl << std::flush;
 
         return -1;