Browse Source

Fix broken Markdown headings

Santiago Castro 8 years ago
parent
commit
167732b9d7
2 changed files with 3 additions and 3 deletions
  1. 2 2
      README.md
  2. 1 1
      streaming.md

+ 2 - 2
README.md

@@ -264,7 +264,7 @@ Data Representation section below.
 Asynchronous API `epgsqla:equery/3` requires you to parse statement beforehand
 Asynchronous API `epgsqla:equery/3` requires you to parse statement beforehand
 
 
 ```erlang
 ```erlang
-#statement{types = Types} = Statement,
+# statement{types = Types} = Statement,
 TypedParameters = lists:zip(Types, Parameters),
 TypedParameters = lists:zip(Types, Parameters),
 Ref = epgsqla:equery(C, Statement, [TypedParameters]),
 Ref = epgsqla:equery(C, Statement, [TypedParameters]),
 receive
 receive
@@ -299,7 +299,7 @@ epgsql:prepared_query(C, "inc", [1]).
 Asynchronous API `epgsqla:prepared_query/3` requires you to parse statement beforehand
 Asynchronous API `epgsqla:prepared_query/3` requires you to parse statement beforehand
 
 
 ```erlang
 ```erlang
-#statement{types = Types} = Statement,
+# statement{types = Types} = Statement,
 TypedParameters = lists:zip(Types, Parameters),
 TypedParameters = lists:zip(Types, Parameters),
 Ref = epgsqla:prepared_query(C, Statement, [TypedParameters]),
 Ref = epgsqla:prepared_query(C, Statement, [TypedParameters]),
 receive
 receive

+ 1 - 1
streaming.md

@@ -28,7 +28,7 @@ Even if application is down it will not lose any changes from DB
 and will receive all changes when it starts again.
 and will receive all changes when it starts again.
 
 
 
 
-##Usage
+## Usage
 1. Initiate connection in replication mode.
 1. Initiate connection in replication mode.
 
 
     To initiate streaming replication connection, `replication` parameter with 
     To initiate streaming replication connection, `replication` parameter with