Skip to content

Commit fec8d2c

Browse files
authored
chore: address some typos (#299)
These are all very minor but still typos none the less Signed-off-by: Gareth Jones <[email protected]>
1 parent 3b28326 commit fec8d2c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Together, these include vulnerabilities from:
5555
- RubyGems
5656
- Ubuntu
5757

58-
These vulnerabilites are aggregated by <https://osv.dev>.
58+
These vulnerabilities are aggregated by <https://osv.dev>.
5959

6060
Join the discussion in the [OpenSSF Slack](https://slack.openssf.org/) channel [#osv_schema](https://openssf.slack.com/archives/C03K6SZBH2S)
6161

docs/schema.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ describes the quantitative method used to calculate the associated `score`.
587587
| --------- | ----------- |
588588
| `CVSS_V2` | A CVSS vector string representing the unique characteristics and severity of the vulnerability using a version of the [Common Vulnerability Scoring System notation](https://www.first.org/cvss/v2/) that is == 2.0 (e.g.`"AV:L/AC:M/Au:N/C:N/I:P/A:C"`).|
589589
| `CVSS_V3` | A CVSS vector string representing the unique characteristics and severity of the vulnerability using a version of the [Common Vulnerability Scoring System notation](https://www.first.org/cvss/) that is >= 3.0 and < 4.0 (e.g.`"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:N/A:N"`).|
590-
| `CVSS_V4` | A CVSS vector string representing the unique characterictics and severity of the vulnerability using a version on the [Common Vulnerability Scoring System notation](https://www.first.org/cvss/) that is >= 4.0 and < 5.0 (e.g. `"CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N"`). |
590+
| `CVSS_V4` | A CVSS vector string representing the unique characteristics and severity of the vulnerability using a version on the [Common Vulnerability Scoring System notation](https://www.first.org/cvss/) that is >= 4.0 and < 5.0 (e.g. `"CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N"`). |
591591
| Your quantitative severity type here. | [Send us a PR](https://github.com/ossf/osv-schema/compare). |
592592

593593
### severity[].score field

tools/debian/.pylintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ no-space-check=
289289
max-module-lines=99999
290290

291291
# String used as indentation unit. The internal Google style guide mandates 2
292-
# spaces. Google's externaly-published style guide says 4, consistent with
292+
# spaces. Google's externally-published style guide says 4, consistent with
293293
# PEP 8. Here, we use 2 spaces, for conformity with many open-sourced Google
294294
# projects (like TensorFlow).
295295
indent-string=' '

tools/ghsa/convert_ghsa.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def get_affected(ghsa: Dict[str, Any]) -> List[Dict[str, Any]]:
253253
if ghsa_range.upper:
254254
if ghsa_range.upper.operator == '<=':
255255
if first_patched:
256-
# "fixed" events are prefered over "last_affected"
256+
# "fixed" events are preferred over "last_affected"
257257
current_events.append({'fixed': first_patched})
258258
else:
259259
current_events.append({'last_affected': ghsa_range.upper.version})

tools/osv-linter/internal/checks/checks.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// To add additional checks:
44
// 1. define a new instance of `Check`
55
// 2. add it to the `checks` array
6-
// 3. add it to the relevent collections defined in `checkCollections`
6+
// 3. add it to the relevant collections defined in `checkCollections`
77
//
88
// To add additional collections of checks:
99
// 1. add to the `checkCollections` array.

0 commit comments

Comments
 (0)