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
3 changes: 2 additions & 1 deletion docs/ref-cicero-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ Feature: IP Payment Contract

If the template execution emits obligations, those can also be specified in the scenario as one of the **Then** steps.

For instance, the following shows a scenario for the [Rental Deposit](https://templates.accordproject.org/ip-payment@0.10.1.html) template, which describes the expected list of obligations that should be emitted for a given request:
For instance, the following shows a scenario for the [Rental Deposit](https://templates.accordproject.org/rental-deposit@0.10.1.html) template, which describes the expected list of obligations that should be emitted for a given request:

```gherkin
Feature: Rental Deposit
This describe the expected behavior for the Accord Project's rental deposit contract
Expand Down
10 changes: 5 additions & 5 deletions docs/started-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ To experiment with Accord Project, you can install the Cicero command-line. This

You must first obtain and configure the following dependency:

* [Node.js (LTS)](http://nodejs.org): We use Node.js to run cicero, generate the documentation, run a development web server, testing, and produce distributable files. Depending on your system, you can install Node either from source or as a pre-packaged bundle.
- [Node.js (LTS)](https://nodejs.org): We use Node.js to run cicero, generate the documentation, run a development web server, testing, and produce distributable files. Depending on your system, you can install Node either from source or as a pre-packaged bundle.

> We recommend using [nvm](https://github.com/creationix/nvm) (or [nvm-windows](https://github.com/coreybutler/nvm-windows)) to manage and install Node.js, which makes it easy to change the version of Node.js per project.
> We recommend using [nvm](https://github.com/nvm-sh/nvm) (or [nvm-windows](https://github.com/coreybutler/nvm-windows)) to manage and install Node.js, which makes it easy to change the version of Node.js per project.

## Installing Cicero

Expand All @@ -36,9 +36,9 @@ cicero --version
To get command line help:
```bash
cicero --help
cicero parse --help // To parse a sample clause/contract
cicero draft --help // To draft a sample clause/contract
cicero trigger --help // To send a request to a clause/contract
cicero parse --help # To parse a sample clause/contract
cicero draft --help # To draft a sample clause/contract
cicero trigger --help # To send a request to a clause/contract
```

## Optional Packages
Expand Down