Django

Code

Ticket #6047: 6047.diff

File 6047.diff, 0.7 kB (added by holdenweb, 3 months ago)

Fix minor nit with SQLite regexp documentation

  • docs/db-api.txt

    old new  
    12851285 
    12861286Case-sensitive regular expression match. 
    12871287 
    1288 The regular expression syntax is that of the database backend in use. In the 
    1289 case of SQLite, which doesn't natively support regular-expression lookups, the 
    1290 syntax is that of Python's ``re`` module. 
     1288The regular expression syntax is that of the database backend in use. 
     1289In the case of SQLite, which has no built in regular expression support, 
     1290this feature is provided by a (Python) user-defined REGEXP function, and 
     1291the regular expression syntax is therefore that of Python's ``re`` module. 
    12911292 
    12921293Example:: 
    12931294