From de11b3b7c7f21d5627c5f9930b84d6b66b407f48 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 5 Jun 2017 17:39:09 +0800 Subject: [PATCH] manual: fix table formatting --- doc/manual/compiler.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/manual/compiler.rst b/doc/manual/compiler.rst index 102db3b03..9d550e7b0 100644 --- a/doc/manual/compiler.rst +++ b/doc/manual/compiler.rst @@ -34,25 +34,25 @@ The Python types correspond to ARTIQ type annotations as follows: | Python | ARTIQ | +===============+=========================+ | NoneType | TNone | -+-------------+---------------------------+ ++---------------+-------------------------+ | bool | TBool | -+-------------+---------------------------+ ++---------------+-------------------------+ | int | TInt32 or TInt64 | -+-------------+---------------------------+ ++---------------+-------------------------+ | float | TFloat | -+-------------+---------------------------+ ++---------------+-------------------------+ | str | TStr | -+-------------+---------------------------+ ++---------------+-------------------------+ | list of T | TList(T) | -+-------------+---------------------------+ ++---------------+-------------------------+ | range | TRange32, TRange64 | -+-------------+---------------------------+ ++---------------+-------------------------+ | numpy.int32 | TInt32 | -+-------------+---------------------------+ ++---------------+-------------------------+ | numpy.int64 | TInt64 | -+-------------+---------------------------+ ++---------------+-------------------------+ | numpy.float64 | TFloat | -+-------------+---------------------------+ ++---------------+-------------------------+ Pitfalls --------