From 0e8d38540aaed1865d90dc9180784d8f07aa9867 Mon Sep 17 00:00:00 2001 From: fsancheziohk Date: Wed, 8 Jul 2020 11:49:04 +0100 Subject: [PATCH] Update plutus-tx.rst --- doc/tutorials/plutus-tx.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/tutorials/plutus-tx.rst b/doc/tutorials/plutus-tx.rst index 217c44f1093..57a731db4b8 100644 --- a/doc/tutorials/plutus-tx.rst +++ b/doc/tutorials/plutus-tx.rst @@ -33,10 +33,9 @@ Template Haskell preliminaries Plutus Tx uses Haskell's metaprogramming support, Template Haskell, for two main reasons: -1. Template Haskell enables us to work at compile time, which is when +- Template Haskell enables us to work at compile time, which is when we do Plutus Tx compilation. - -2. It allows us to wire up the machinery that invokes the Plutus Tx compiler. +- It allows us to wire up the machinery that invokes the Plutus Tx compiler. Template Haskell is very versatile, but we only use a few features.