Skip to content

Commit ef0278a

Browse files
docs: fix typo "This is out" -> "This is our"
Fix typo in comments: "This is out" -> "This is our" (#233) Signed-off-by: Rodney Richardson <[email protected]>
1 parent 866f9ac commit ef0278a

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

cyclonedx/model/__init__.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def __repr__(self) -> str:
217217

218218
class HashAlgorithm(Enum):
219219
"""
220-
This is out internal representation of the hashAlg simple type within the CycloneDX standard.
220+
This is our internal representation of the hashAlg simple type within the CycloneDX standard.
221221
222222
.. note::
223223
See the CycloneDX Schema: https://cyclonedx.org/docs/1.3/#type_hashAlg
@@ -390,7 +390,7 @@ def __str__(self) -> str:
390390

391391
class ExternalReference:
392392
"""
393-
This is out internal representation of an ExternalReference complex type that can be used in multiple places within
393+
This is our internal representation of an ExternalReference complex type that can be used in multiple places within
394394
a CycloneDX BOM document.
395395
396396
.. note::
@@ -480,7 +480,7 @@ def __repr__(self) -> str:
480480

481481
class License:
482482
"""
483-
This is out internal representation of `licenseType` complex type that can be used in multiple places within
483+
This is our internal representation of `licenseType` complex type that can be used in multiple places within
484484
a CycloneDX BOM document.
485485
486486
.. note::
@@ -575,7 +575,7 @@ def __repr__(self) -> str:
575575

576576
class LicenseChoice:
577577
"""
578-
This is out internal representation of `licenseChoiceType` complex type that can be used in multiple places within
578+
This is our internal representation of `licenseChoiceType` complex type that can be used in multiple places within
579579
a CycloneDX BOM document.
580580
581581
.. note::
@@ -642,7 +642,7 @@ def __repr__(self) -> str:
642642

643643
class Property:
644644
"""
645-
This is out internal representation of `propertyType` complex type that can be used in multiple places within
645+
This is our internal representation of `propertyType` complex type that can be used in multiple places within
646646
a CycloneDX BOM document.
647647
648648
.. note::
@@ -699,7 +699,7 @@ def __repr__(self) -> str:
699699

700700
class NoteText:
701701
"""
702-
This is out internal representation of the Note.text complex type that can be used in multiple places within
702+
This is our internal representation of the Note.text complex type that can be used in multiple places within
703703
a CycloneDX BOM document.
704704
705705
.. note::
@@ -772,7 +772,7 @@ def __repr__(self) -> str:
772772

773773
class Note:
774774
"""
775-
This is out internal representation of the Note complex type that can be used in multiple places within
775+
This is our internal representation of the Note complex type that can be used in multiple places within
776776
a CycloneDX BOM document.
777777
778778
.. note::
@@ -839,7 +839,7 @@ def __repr__(self) -> str:
839839

840840
class OrganizationalContact:
841841
"""
842-
This is out internal representation of the `organizationalContact` complex type that can be used in multiple places
842+
This is our internal representation of the `organizationalContact` complex type that can be used in multiple places
843843
within a CycloneDX BOM document.
844844
845845
.. note::
@@ -911,7 +911,7 @@ def __repr__(self) -> str:
911911

912912
class OrganizationalEntity:
913913
"""
914-
This is out internal representation of the `organizationalEntity` complex type that can be used in multiple places
914+
This is our internal representation of the `organizationalEntity` complex type that can be used in multiple places
915915
within a CycloneDX BOM document.
916916
917917
.. note::
@@ -984,7 +984,7 @@ def __repr__(self) -> str:
984984

985985
class Tool:
986986
"""
987-
This is out internal representation of the `toolType` complex type within the CycloneDX standard.
987+
This is our internal representation of the `toolType` complex type within the CycloneDX standard.
988988
989989
Tool(s) are the things used in the creation of the BOM.
990990
@@ -1086,7 +1086,7 @@ def __repr__(self) -> str:
10861086

10871087
class IdentifiableAction:
10881088
"""
1089-
This is out internal representation of the `identifiableActionType` complex type.
1089+
This is our internal representation of the `identifiableActionType` complex type.
10901090
10911091
.. note::
10921092
See the CycloneDX specification: https://cyclonedx.org/docs/1.4/xml/#type_identifiableActionType
@@ -1159,7 +1159,7 @@ def __repr__(self) -> str:
11591159

11601160
class Copyright:
11611161
"""
1162-
This is out internal representation of the `copyrightsType` complex type.
1162+
This is our internal representation of the `copyrightsType` complex type.
11631163
11641164
.. note::
11651165
See the CycloneDX specification: https://cyclonedx.org/docs/1.4/xml/#type_copyrightsType

cyclonedx/model/issue.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
class IssueClassification(Enum):
2626
"""
27-
This is out internal representation of the enum `issueClassification`.
27+
This is our internal representation of the enum `issueClassification`.
2828
2929
.. note::
3030
See the CycloneDX Schema definition: https://cyclonedx.org/docs/1.4/xml/#type_issueClassification
@@ -36,7 +36,7 @@ class IssueClassification(Enum):
3636

3737
class IssueTypeSource:
3838
"""
39-
This is out internal representation ofa source within the IssueType complex type that can be used in multiple
39+
This is our internal representation ofa source within the IssueType complex type that can be used in multiple
4040
places within a CycloneDX BOM document.
4141
4242
.. note::
@@ -93,7 +93,7 @@ def __repr__(self) -> str:
9393

9494
class IssueType:
9595
"""
96-
This is out internal representation of an IssueType complex type that can be used in multiple places within
96+
This is our internal representation of an IssueType complex type that can be used in multiple places within
9797
a CycloneDX BOM document.
9898
9999
.. note::

0 commit comments

Comments
 (0)