From 1a18b5cfaca261f80459070982d930202b721220 Mon Sep 17 00:00:00 2001 From: Pascal Borreli Date: Wed, 18 Feb 2015 23:17:16 +0000 Subject: [PATCH] Fixed typos --- README.md | 2 +- TODO.md | 6 +++--- src/connection.lisp | 2 +- src/sources/mssql/mssql.lisp | 2 +- web/src/geolite.md | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6d5ecf8..dbd679f 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ never had a *year zero*). ## Versioning -pgloader version 1.x is quite old and was devleoped in `TCL`. +pgloader version 1.x is quite old and was developed in `TCL`. When faced with maintaining that code, the new emerging development team (hi!) picked `python` instead because that made sense at the time. So pgloader version 2.x was written in python. diff --git a/TODO.md b/TODO.md index ad71157..e3c6302 100644 --- a/TODO.md +++ b/TODO.md @@ -80,12 +80,12 @@ simpler. ### performances - some more parallelizing options - - support for partitionning in pgloader itself + - support for partitioning in pgloader itself ### UI - - add a web controler with pretty monitoring - - launch new jobs from the web controler + - add a web controller with pretty monitoring + - launch new jobs from the web controller ### crazy ideas diff --git a/src/connection.lisp b/src/connection.lisp index 612016f..23bc17a 100644 --- a/src/connection.lisp +++ b/src/connection.lisp @@ -1,5 +1,5 @@ ;; -;; Abstrat classes to define the API to connect to a data source +;; Abstract classes to define the API to connect to a data source ;; (in-package :pgloader.connection) diff --git a/src/sources/mssql/mssql.lisp b/src/sources/mssql/mssql.lisp index d56475b..da89fc9 100644 --- a/src/sources/mssql/mssql.lisp +++ b/src/sources/mssql/mssql.lisp @@ -262,7 +262,7 @@ (return-from copy-database))) - ;; Transfert the data + ;; Transfer the data (loop :for (schema . tables) :in all-columns :do (loop :for (table-name . columns) :in tables :do diff --git a/web/src/geolite.md b/web/src/geolite.md index 4847594..206ef79 100644 --- a/web/src/geolite.md +++ b/web/src/geolite.md @@ -104,7 +104,7 @@ The transformation from a pair of integers into an IP is done dynamically by the pgloader process. Also, the location is given as a pair of *float* columns for the *longitude* -and the *latiude* where PostgreSQL offers the +and the *latitude* where PostgreSQL offers the [point](http://www.postgresql.org/docs/9.3/interactive/functions-geometry.html) datatype, so the pgloader command here will actually transform the data on the fly to use the appropriate data type and its input representation.