diff --git a/source/Collection_Data_Types.rst b/source/Collection_Data_Types.rst index 511dfdcae1d96570200db86b7223726e3c6f5edf..9ca0d3e09f9587f96857071109ac19437268e393 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")