Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Un-singularize a few instances of "criterion" #127

Merged
merged 1 commit into from
Jan 7, 2025
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
4 changes: 2 additions & 2 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"gopkg.in/yaml.v3"
)

// Struct for representing each criterion entry
// Struct for representing each entry
type Criterion struct {
ID string `yaml:"id"`
MaturityLevel int `yaml:"maturity_level"`
Expand Down Expand Up @@ -56,7 +56,7 @@ var (
}
compileCmd = &cobra.Command{
Use: "compile [file]",
Short: "Compile a YAML file of security criterion",
Short: "Compile a YAML file of security criteria",
Args: cobra.MinimumNArgs(0),
Run: func(cmd *cobra.Command, args []string) {
err := readYAMLFile()
Expand Down
6 changes: 3 additions & 3 deletions cmd/template.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

## Overview

The Open Source Project Security (OSPS) Baseline is a set of security criterion that projects should meet to be considered secure.
The criterion are organized by maturity level and category.
In the detailed subsections you will find the criterion, rationales, and details notes.
The Open Source Project Security (OSPS) Baseline is a set of security criteria that projects should meet to be considered secure.
The criteria are organized by maturity level and category.
In the detailed subsections you will find the criterion, rationale, and details notes.

For more information on the project and to make contributions, visit the [GitHub repo](https://github.com/ossf/security-baseline).

Expand Down
Loading