pidl: Fix code spelling
authorAndreas Schneider <asn@samba.org>
Tue, 6 Jun 2023 11:04:46 +0000 (13:04 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Fri, 23 Jun 2023 13:44:31 +0000 (13:44 +0000)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
pidl/lib/Parse/Pidl/ODL.pm
pidl/lib/Parse/Pidl/Samba4/Python.pm

index 12f869c662e67a6585e1b16d60feb0fb82d02579..0943f3a8f8781b0f753864375b35e52f28cff08a 100644 (file)
@@ -1,5 +1,5 @@
 ##########################################
-# Converts ODL stuctures to IDL structures
+# Converts ODL structures to IDL structures
 # (C) 2004-2005, 2008 Jelmer Vernooij <jelmer@samba.org>
 
 package Parse::Pidl::ODL;
index 03a901cc24dc407ab64d2d9a035b3f81e86bad17..6eb59a0557e69927d7ab1c6caaec11e9c2b533aa 100644 (file)
@@ -470,14 +470,14 @@ sub PythonFunctionStruct($$$$)
        $self->indent;
 
        # This creates a new, zeroed C structure and python object.
-       # Thse may not be valid or sensible values, but this is as
+       # These may not be valid or sensible values, but this is as
        # well as we can do.
 
        $self->pidl("PyObject *self = pytalloc_new($cname, type);");
 
        # If there are any children that are ref pointers, we need to
        # allocate something for them to point to just as the pull
-       # routine will when parsing the stucture from NDR.
+       # routine will when parsing the structure from NDR.
        #
        # We then make those pointers point to zeroed memory
        #