@@ -86,7 +86,7 @@ Interface Changes
8686 rows (like class instantiation used to do).
8787
8888* We're now using a Subversion repository instead of CVS. It is
89- located at http://svn.colorstudy.com/trunk/SQLObject
89+ located at http://svn.colorstudy.com/trunk/SQLObject
9090
9191* If you pass ``forceDBName=True`` to the ``*Col`` constructors, then
9292 your column name doesn't have to be restricted to a-z, 0-9, and _.
@@ -297,25 +297,25 @@ Features
297297* MySQL uses ``localhost`` as the default host, and the empty string
298298 as the default password.
299299
300- * Added functions for use with queries: `ISNULL`, `ISNOTNULL`. ``==``
301- and ``!=`` can be used with None, and is translated into `ISNULL`,
300+ * Added functions for use with queries: `ISNULL`, `ISNOTNULL`. ``==``
301+ and ``!=`` can be used with None, and is translated into `ISNULL`,
302302 `ISNOTNULL`.
303303
304- * Classes can be part of a specific registry. Since classes are
304+ * Classes can be part of a specific registry. Since classes are
305305 referred to by name in several places, the names have to be unique.
306306 This can be problematic, so you can add a class variable `_registry`,
307- the value of which should be a string. Classes references are
307+ the value of which should be a string. Classes references are
308308 assumed to be inside that registry, and class names need only be
309309 unique among classes in that registry.
310310
311- * ``SomeClass.select()`` selects all, instead of using
311+ * ``SomeClass.select()`` selects all, instead of using
312312 ``SomeClass.select('all')``. You can also use None instead of
313313 ``'all'``.
314314
315315* Trying to fetch non-existent objects raises `SQLObjectNotFound`,
316316 which is a subclass of the builtin exception `LookupError`.
317317 This may not be raised if `_cacheValues` is False and you use
318- the ID to fetch an object (but alternateID fetches will raise
318+ the ID to fetch an object (but alternateID fetches will raise
319319 the exception in either case).
320320
321321* Can order by descending order, with the `reversed` option to
@@ -328,7 +328,7 @@ Col and Join
328328~~~~~~~~~~~~
329329
330330* `Join` constructors have an argument `orderBy`, which is the name
331- of a Python attribute to sort results by. If not given, the
331+ of a Python attribute to sort results by. If not given, the
332332 appropriate class's `_defaultOrder` will be used. None implies
333333 no sorting (and ``orderBy=None`` will override `_defaultOrder`).
334334
@@ -369,15 +369,15 @@ Bugs
369369* SomeClass.q.colName now does proper translation to database names,
370370 using dbName, etc., instead of being entirely algorithm-driven.
371371
372- * Raise `TypeError` if you pass an unknown argument to the `new`
372+ * Raise `TypeError` if you pass an unknown argument to the `new`
373373 method.
374374
375375* You can override the _get_* or _set_* version of a property without
376376 overriding the other.
377377
378378* Python 2.3 compatible.
379379
380- * Trying to use ``Col('id')`` or ``id = Col()`` will raise an
380+ * Trying to use ``Col('id')`` or ``id = Col()`` will raise an
381381 exception, instead of just acting funky.
382382
383383* ``ForeignKey`` columns return None if the associated column is
0 commit comments