From ca52331aedc5311218e3f6d31fa8a214f58fbbc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bertrand=20N=C3=A9ron?= <bneron@pasteur.fr> Date: Sun, 6 Jun 2021 22:38:29 +0200 Subject: [PATCH] typos --- source/Collection_Data_Types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Collection_Data_Types.rst b/source/Collection_Data_Types.rst index 511dfdc..9ca0d3e 100644 --- a/source/Collection_Data_Types.rst +++ b/source/Collection_Data_Types.rst @@ -547,7 +547,7 @@ We also have to define which name correspond to which item:: import collections RestrictEnzyme = collections.namedtuple("RestrictEnzyme", ("name", "comment", "sequence", "cut", "end")) -The we can use this new kind of tuple:: +Then we can use this new kind of tuple:: ecor1 = RestrictEnzyme("EcoRI", "Ecoli restriction enzime I", "gaattc", 1, "sticky") ecor5 = RestrictEnzyme("EcoRV", "Ecoli restriction enzime V", "gatatc", 3, "blunt") -- GitLab