Skip to content
Open
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 guides/manual-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To test the current local version of the Scaffolding tool:

5. Follow the Scaffolding tool's output instructions, but skip the `nix develop` step to ensure you continue using the locally built `hc-scaffold` instead of that from `holochain/holonix`.

6. Run tests or launch your hApp using `nix develop` as needed. This shell contians a `hc-scaffold` built from `holochain/holonix` alongside other nix packages needed for local development of your hApp such as node.js and package managers like pnpm, bun or yarn.
6. Run tests or launch your hApp using `nix develop` as needed. This shell contains a `hc-scaffold` built from `holochain/holonix` alongside other nix packages needed for local development of your hApp such as node.js and package managers like pnpm, bun or yarn.

## Testing with Different Holochain Versions

Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl HcScaffold {
scaffold_config: Option<&ScaffoldConfig>,
) -> Result<TemplateType, ScaffoldError> {
// Read template_type config if no `--template` flag is provided and use it or
// ensure that if a `--template` is explicity provided, it matches the original
// ensure that if a `--template` is explicitly provided, it matches the original
// template the app was scaffolded with
let template = match (scaffold_config, &self.template) {
(Some(config), Some(template)) if config.template != *template => {
Expand Down
2 changes: 1 addition & 1 deletion src/scaffold/entry_type/definitions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ impl FromStr for FieldDefinition {
};

// XXX: perhaps widget-types can be validated at this level rather than
// on attemting to render templates
// on attempting to render templates
let widget = str_path
.next()
.filter(|v| !v.is_empty())
Expand Down