diff --git a/MultipletCombiner.cabal b/MultipletCombiner.cabal
--- a/MultipletCombiner.cabal
+++ b/MultipletCombiner.cabal
@@ -5,8 +5,8 @@
 -- see: https://github.com/sol/hpack
 
 name:           MultipletCombiner
-version:        0.0.3
-synopsis:       A Haskell implementation for combining SU(n) multiplets.
+version:        0.0.4
+synopsis:       A Haskell implementation for combining SU(n) multiplets
 description:    See README at <https://github.com/mdrslmr/MultipletCombiner>
 category:       physics,library,science,math,groups
 homepage:       https://github.com/mdrslmr/MultipletCombiner#readme
diff --git a/src/Physics/MultipletCombiner.hs b/src/Physics/MultipletCombiner.hs
--- a/src/Physics/MultipletCombiner.hs
+++ b/src/Physics/MultipletCombiner.hs
@@ -28,7 +28,7 @@
 
 
 
-Example for combinaing two multiplets using Young-Diagrams:
+Example for combining two multiplets using Young-Diagrams:
 
 @
 
@@ -50,10 +50,10 @@
 
 module Physics.MultipletCombiner
     (
-    -- * Kroneker product like operators
+    -- * Kronecker product like operators
         (><),
         (>><),
-    -- * Multiplicitiy calculation
+    -- * Multiplicity calculation
         multi,
         multis,
     -- * Basic data type
@@ -155,13 +155,13 @@
                             is -> is : ytsNums ts
 
 -- | Check for the string for being composed of admissible letters.
--- | Admissible and not admissible examples:
+--   Admissible and not admissible examples:
 --
 -- @
 --
 -- admis "aabacdaebbcbd"  = True
 --
--- last letter not admissable
+-- last letter not admissible
 -- admis "abacae"  = False
 -- admis "abacdec"  = False
 --
@@ -224,7 +224,7 @@
 newtab _ t  [] = t
 newtab s t (i:is) = newtab s (appendAt i s t) is
 
--- | Create multiple new tableau using 'newtab' given one tableau and
+-- | Create multiple new tableau using newtab given one tableau and
 --  one line of a right side tableau.
 --
 --   e.g.: tabs1 (ytSymbols [1,1,1]) "a a "
