third_party: Update waf to version 2.0.17
[bbaumbach/samba-autobuild/.git] / third_party / waf / waflib / extras / xcode6.py
index c062a74e4fca49c9127075ab5b9b10d81039e128..91bbff181ece33143ca0569856158414c57ac311 100644 (file)
@@ -147,7 +147,7 @@ def newid():
 Represents a tree node in the XCode project plist file format.
 When written to a file, all attributes of XCodeNode are stringified together with
 its value. However, attributes starting with an underscore _ are ignored
-during that process and allows you to store arbitray values that are not supposed
+during that process and allows you to store arbitrary values that are not supposed
 to be written out.
 """
 class XCodeNode(object):
@@ -247,7 +247,7 @@ class PBXBuildFile(XCodeNode):
                # fileRef is a reference to a PBXFileReference object
                self.fileRef = fileRef
 
-               # A map of key/value pairs for additionnal settings.
+               # A map of key/value pairs for additional settings.
                self.settings = settings
 
        def __hash__(self):
@@ -435,8 +435,8 @@ class PBXProject(XCodeNode):
        def create_target_dependency(self, target, name):
                """ : param target : PXBNativeTarget """
                proxy = PBXContainerItemProxy(self, target, name)
-               dependecy = PBXTargetDependency(target, proxy)
-               return dependecy
+               dependency = PBXTargetDependency(target, proxy)
+               return dependency
 
        def write(self, file):