Skip to content

Commit

Permalink
val->hylo
Browse files Browse the repository at this point in the history
  • Loading branch information
dabrahams committed Jan 11, 2024
1 parent ecb54a4 commit a3056de
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .jazzy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ author: Dave Abrahams
theme: fullwidth
output: ./docs
author_url: "https://daveabrahams.com"
github_url: "https://github.com/val-lang/Lotsawa"
root_url: "https://val-lang.github.io/Lotsawa/reference/"
github_url: "https://github.com/hylo-lang/Lotsawa"
root_url: "https://hylo-lang.github.io/Lotsawa/reference/"
2 changes: 1 addition & 1 deletion .spi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ builder:
custom_documentation_parameters: [
--include-extended-types, --enable-inherited-docs,
--source-service, github,
--source-service-base-url, https://github.com/val-lang/Lotsawa/blob/main,
--source-service-base-url, https://github.com/hylo-lang/Lotsawa/blob/main,
--checkout-path, .
]
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Lotsawa

[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fval-lang%2FLotsawa%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/val-lang/Lotsawa)
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fval-lang%2FLotsawa%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/hylo-lang/Lotsawa)

[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fval-lang%2FLotsawa%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/val-lang/Lotsawa)
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fval-lang%2FLotsawa%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/hylo-lang/Lotsawa)

A parsing library and tool with the essential features of
[MARPA](https://jeffreykegler.github.io/Marpa-web-site/), encoded in pure Swift.
Expand All @@ -17,8 +17,8 @@ Lotsawa owes almost everything of value to MARPA and its author, Jeffrey Kegler,
[thread of progress in parsing technology](https://jeffreykegler.github.io/personal/timeline_v3),
gathering it together into one group of algorithms, proving important properties about them, and
contributing some key innovations. This project exists primarily because MARPA is [missing
functionality](https://github.com/jeffreykegler/libmarpa/issues/117) needed by the [Val
language](https://github.com/val-lang/val) implementation.
functionality](https://github.com/jeffreykegler/libmarpa/issues/117) needed by the [Hylo
language](https://github.com/hylo-lang/hylo) implementation.

Secondary reasons Lotsawa might be useful:

Expand Down
2 changes: 1 addition & 1 deletion Tests/LotsawaTests/GrammarPreprocessing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class GrammarPreprocessing: XCTestCase {
}
}

// This is a very ambiguous grammar derived from Val with explicit representation of whitespace.
// This is a very ambiguous grammar derived from Hylo with explicit representation of whitespace.
let valWithExplicitWhitespace: [(lhs: Int, rhs: [Int])] = [
(lhs: 2, rhs: [3]),
(lhs: 2, rhs: [4]),
Expand Down

0 comments on commit a3056de

Please sign in to comment.