Skip to content

Commit 50047ed

Browse files
Michael de VilliersMichael de Villiers
Michael de Villiers
authored and
Michael de Villiers
committed
Fixed parsing errors in README
1 parent 9872099 commit 50047ed

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Peewee
22
######
33
A database driver to add Microsoft SQL Server and Azure support using
4-
`pymssql <http://pymssql.org>`_ and `FreeTDS <http://freetds.org>`_ in
4+
`pymssql <http://pymssql.org>`__ and `FreeTDS <http://freetds.org>`__ in
55
Peewee and should run on most Unix-like systems, Microsoft Windows and Mac OS X.
66

77
In it's current state you should be able to access data and possibly do certain
@@ -22,10 +22,10 @@ Or alternatively, select a release or development version from Github and run:
2222

2323
Getting Started
2424
===============
25-
For help on installing and configuring `FreeTDS <http://freetds.org>`_ I
25+
For help on installing and configuring `FreeTDS <http://freetds.org>`__ I
2626
recommend taking a look at the
27-
`guide <http://pymssql.org/en/latest/freetds.html>`_ in the
28-
`pymssql <http://www.pymssql.org>`_ documentation.
27+
`guide <http://pymssql.org/en/latest/freetds.html>`__ in the
28+
`pymssql <http://www.pymssql.org>`__ documentation.
2929

3030
And then you should be able to instantiate a database as below and start
3131
building your models for accessing data:
@@ -34,7 +34,7 @@ building your models for accessing data:
3434
3535
from peewee_mssql import MssqlDatabase
3636
37-
db = MssqlDatabase('MyDatabase', host='host.example.com', user=r'domain\\username', password='password')
37+
db = MssqlDatabase('MyDatabase', host='host.example.com', user='domain\\username', password='password')
3838
3939
If you are using Microsoft SQL Server 2005 you will need to use the legacy
4040
datetime data types, simple pass `use_legacy_datetime=True` to the

0 commit comments

Comments
 (0)