Skip to content

Commit

Permalink
Fix indentation for browser display
Browse files Browse the repository at this point in the history
  • Loading branch information
etaty committed Dec 23, 2016
1 parent d7fc256 commit e4daa98
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main/scala/doobie/UpdatesSection.scala
Expand Up @@ -24,16 +24,16 @@ import scalaz._, Scalaz._
* {{{ * {{{
* val drop: Update0 = * val drop: Update0 =
* sql""" * sql"""
* DROP TABLE IF EXISTS person * DROP TABLE IF EXISTS person
* """.update * """.update
* *
* val create: Update0 = * val create: Update0 =
* sql""" * sql"""
* CREATE TABLE person ( * CREATE TABLE person (
* id SERIAL, * id SERIAL,
* name VARCHAR NOT NULL UNIQUE, * name VARCHAR NOT NULL UNIQUE,
* age SMALLINT * age SMALLINT
* ) * )
* """.update * """.update
* }}} * }}}
* *
Expand All @@ -47,8 +47,8 @@ import scalaz._, Scalaz._
* constructs an `Update0` that inserts a row into the `person` table. * constructs an `Update0` that inserts a row into the `person` table.
* *
* {{{ * {{{
* def insert1(name: String, age: Option[Short]): Update0 = * def insert1(name: String, age: Option[Short]): Update0 =
* sql"insert into person (name, age) values ($name, $age)".update * sql"insert into person (name, age) values ($name, $age)".update
* }}} * }}}
* *
* @param name inserting_and_updating * @param name inserting_and_updating
Expand Down

0 comments on commit e4daa98

Please sign in to comment.