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

fix minor typos #40

Merged
merged 1 commit into from
Oct 22, 2023
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 Chapters/0.Introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Modern software relies heavily on open source components that are developed
collaboratively in a distributed setting, and that are assembled to create
complex systems that evolve at a fast pace.

This has strenghtened the need to precisely track, ensure availability, and
This has strengthened the need to precisely track, ensure availability, and
guarantee integrity of the components that go into a given system for a variety
of stakeholders. Academia needs to ensure that research results are
reproducible, industry needs to improve the traceability of the software supply
Expand Down
4 changes: 2 additions & 2 deletions Chapters/4.Syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ the following grammar:
<dec_digit> ::= "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" ;
<hex_digit> ::= <dec_digit> | "a" | "b" | "c" | "d" | "e" | "f" ;

<qualifiers> := ";" <qualifier> [ <qualifiers> ] ;
<qualifiers> ::= ";" <qualifier> [ <qualifiers> ] ;
<qualifier> ::=
<context_qualifier>
| <fragment_qualifier>
Expand All @@ -40,7 +40,7 @@ the following grammar:
<anchor_ctxt> ::= "anchor" "=" <identifier_core> ;
<path_ctxt> ::= "path" "=" <path_absolute_escaped> ;
<fragment_qualifier> ::= "lines" "=" <range> | "bytes" "=" <range> ;
<range> = <number> ["-" <number>] ;
<range> ::= <number> ["-" <number>] ;
<number> ::= <dec_digit> + ;
<url_escaped> ::= (* RFC 3987 IRI *)
<path_absolute_escaped> ::= (* RFC 3987 absolute path *)
Expand Down
Loading