From 9ea29c1a0ceb2c3f3157fb161d1ea819ea5d64d4 Mon Sep 17 00:00:00 2001 From: Jake Wheat Date: Tue, 17 Dec 2013 23:10:51 +0200 Subject: [PATCH] update github project name --- Language/SQL/SimpleSQL/Syntax.lhs | 2 -- README | 2 +- simple-sql-parser.cabal | 8 ++++---- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Language/SQL/SimpleSQL/Syntax.lhs b/Language/SQL/SimpleSQL/Syntax.lhs index 73385dc..aa91235 100644 --- a/Language/SQL/SimpleSQL/Syntax.lhs +++ b/Language/SQL/SimpleSQL/Syntax.lhs @@ -275,8 +275,6 @@ I'm not sure if this is valid syntax or not. > data Alias = Alias Name (Maybe [Name]) > deriving (Eq,Show,Read) -TODO: add function table ref - > -- | The type of a join. > data JoinType = JInner | JLeft | JRight | JFull | JCross > deriving (Eq,Show,Read) diff --git a/README b/README index 1e34418..f1e497f 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ A parser for SQL queries in Haskell. -Homepage: http://jakewheat.github.io/simple_sql_parser/ +Homepage: http://jakewheat.github.io/simple-sql-parser/ Contact: jakewheatmail@gmail.com \ No newline at end of file diff --git a/simple-sql-parser.cabal b/simple-sql-parser.cabal index 4be620f..ab42454 100644 --- a/simple-sql-parser.cabal +++ b/simple-sql-parser.cabal @@ -1,9 +1,9 @@ name: simple-sql-parser version: 0.2.0 synopsis: A parser for SQL queries -description: A parser for SQL queries. Please see the homepage for more information . +description: A parser for SQL queries. Please see the homepage for more information . -homepage: http://jakewheat.github.io/simple_sql_parser/ +homepage: http://jakewheat.github.io/simple-sql-parser/ license: BSD3 license-file: LICENSE author: Jake Wheat @@ -13,11 +13,11 @@ category: Database,Language build-type: Simple extra-source-files: README,LICENSE,changelog cabal-version: >=1.10 -bug-reports: https://github.com/JakeWheat/simple_sql_parser/issues +bug-reports: https://github.com/JakeWheat/simple-sql-parser/issues source-repository head type: git - location: https://github.com/JakeWheat/simple_sql_parser.git + location: https://github.com/JakeWheat/simple-sql-parser.git library exposed-modules: Language.SQL.SimpleSQL.Pretty,