Merge pull request #59 from akiradeveloper/feature/fix-comma-op-assign

fix: Comma operator in Assignment
diff --git a/pycparser/c_generator.py b/pycparser/c_generator.py
index ef30b96..a76638d 100644
--- a/pycparser/c_generator.py
+++ b/pycparser/c_generator.py
@@ -93,7 +93,7 @@
 
     def visit_Decl(self, n, no_type=False):
         # no_type is used when a Decl is part of a DeclList, where the type is
-        # explicitly only for the first delaration in a list.
+        # explicitly only for the first declaration in a list.
         #
         s = n.name if no_type else self._generate_decl(n)
         if n.bitsize: s += ' : ' + self.visit(n.bitsize)