Rename base package to pf everywhere, to match tutorial

This commit is contained in:
Jan Van Bruggen 2021-12-12 05:55:46 -07:00
parent b9395e9b75
commit d03a51c75b
34 changed files with 84 additions and 84 deletions

View file

@ -204,7 +204,7 @@ pub enum ImportsEntry<'a> {
Collection<'a, Loc<ExposesEntry<'a, &'a str>>>,
),
/// e.g. `base.Task` or `base.Task.{ after }` or `base.{ Task.{ Task, after } }`
/// e.g. `pf.Task` or `pf.Task.{ after }` or `pf.{ Task.{ Task, after } }`
Package(
&'a str,
ModuleName<'a>,

View file

@ -786,7 +786,7 @@ fn imports_entry<'a>() -> impl Parser<'a, ImportsEntry<'a>, EImports> {
map_with_arena!(
and!(
and!(
// e.g. `base.`
// e.g. `pf.`
maybe!(skip_second!(
shortname(),
word1(b'.', EImports::ShorthandDot)