Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/vuln_affected_software.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion stix/bindings/stix_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions stix/common/structured_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.

"""
Expand Down Expand Up @@ -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.

"""
Expand Down
2 changes: 1 addition & 1 deletion stix/indicator/indicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down