diff --git a/examples/vuln_affected_software.py b/examples/vuln_affected_software.py index 3f1d5532..620087c0 100644 --- a/examples/vuln_affected_software.py +++ b/examples/vuln_affected_software.py @@ -28,7 +28,7 @@ # Wrap the Product Object in an Observable instance observable = Observable(software) -# Attach the Product observable to the affected_sofware list of +# Attach the Product observable to the affected_software list of # RelatedObservable instances. This wraps our Observable in a # RelatedObservable layer. vuln = Vulnerability() diff --git a/stix/bindings/stix_common.py b/stix/bindings/stix_common.py index 64cfac7c..8ae31be4 100644 --- a/stix/bindings/stix_common.py +++ b/stix/bindings/stix_common.py @@ -3495,7 +3495,7 @@ class StructuredTextType(GeneratedsSuper): Note that if the markup tags used by this format would be interpreted as XML information (such as the bracket-based tags of HTML) the text area should be enclosed in a CDATA section to prevent the markup from - interferring with XMLvalidation of the CybOX document. If this + interfering with XMLvalidation of the CybOX document. If this attribute is absent, the implication is that no markup is being used.""" subclass = None superclass = None diff --git a/stix/common/structured_text.py b/stix/common/structured_text.py index 498e5457..9dc73b47 100644 --- a/stix/common/structured_text.py +++ b/stix/common/structured_text.py @@ -64,7 +64,7 @@ def to_dict(self): """Converts this object into a dictionary representation. Note: - If no properies or attributes are set other than ``value``, + If no properties or attributes are set other than ``value``, this will return a string. """ @@ -95,7 +95,7 @@ def _unset_default(text): """Unsets the ordinality of the StructuredText object `text` if the ordinality is equal to the DEFAULT_ORDINALITY. - The ordinaity will be returned to its original state after exiting the + The ordinality will be returned to its original state after exiting the context manager. """ diff --git a/stix/indicator/indicator.py b/stix/indicator/indicator.py index 5842209f..fc941045 100644 --- a/stix/indicator/indicator.py +++ b/stix/indicator/indicator.py @@ -470,7 +470,7 @@ def add_related_indicator(self, indicator): ``related_indicators`` list property. Calling this method is the same as calling ``append()`` on the - ``related_indicators`` proeprty. + ``related_indicators`` property. See Also: The :class:`RelatedIndicators` documentation.