Просмотр исходного кода

Added header, tweaking code blocks.

David N. Welton 11 лет назад
Родитель
Сommit
dc94433713
1 измененных файлов с 2 добавлено и 3 удалено
  1. 2 3
      README.md

+ 2 - 3
README.md

@@ -1,10 +1,9 @@
-Erlang PostgreSQL Database Client
+# Erlang PostgreSQL Database Client
 
 Asynchronous fork of https://github.com/wg/epgsql originally here:
 https://github.com/mabrek/epgsql and subsequently forked in order to
 provide a common fork for community development.
 
-
 * Motivation
 
   When you need to execute several queries, it involves a number network
@@ -47,7 +46,7 @@ provide a common fork for community development.
 
 * Connect
 
-  {ok, C} = pgsql:connect(Host, [Username], [Password], Opts).
+      {ok, C} = pgsql:connect(Host, [Username], [Password], Opts).
 
   Host      - host to connect to.
   Username  - username to connect as, defaults to $USER.