1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix a test module comment typo reported on the mailing list.

FossilOrigin-Name: 87eb1f04d2dd06f34f1385006bf42ae6c8903d46
This commit is contained in:
drh
2010-10-31 22:47:15 +00:00
parent 0ee6862072
commit 3308b6ac52
3 changed files with 11 additions and 12 deletions

View File

@@ -77,7 +77,7 @@ static int circle_geom(
/* Record the center and radius of the circular region. One way that
** tested bounding boxes that intersect the circular region are detected
** is by testing if each corner of the bounding box likes within radius
** is by testing if each corner of the bounding box lies within radius
** units of the center of the circle. */
pCircle->centerx = p->aParam[0];
pCircle->centery = p->aParam[1];
@@ -292,4 +292,3 @@ int Sqlitetestrtree_Init(Tcl_Interp *interp){
Tcl_CreateObjCommand(interp, "register_circle_geom",register_circle_geom,0,0);
return TCL_OK;
}