Skip to content

Commit 38bddb7

Browse files
doc(docs): fix some typos (#427)
* doc(docs): fix some typos Signed-off-by: ahmad-kashkoush <[email protected]> * Update docs/accordproject-tour.md Signed-off-by: Matt Roberts <[email protected]> --------- Signed-off-by: ahmad-kashkoush <[email protected]> Signed-off-by: Matt Roberts <[email protected]> Co-authored-by: Matt Roberts <[email protected]>
1 parent b24ce49 commit 38bddb7

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

docs/accordproject-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ While the Accord Project technology is targeted at the development of smart lega
1717

1818
### How is an Accord Project "Smart Contract" different from "Smart Contracts" on the blockchain?
1919

20-
Accord Project Smart legal contracts should not be confused with so-called blockchain “smart contracts”, which are scripts that necesarily operate on a blockchain. On the blockchain a smart contract is often written in a specific language like solidity that executes and operates on the blockchain. It lives in a closed world. An Accord Project Smart Contract contains text based template that integrates with a data model and the Ergo language. The three components are integrated into a whole. Using Ergo an Accord Project Smart contract can communicate with other systems, it can send and receive data, it can perform calculations and it can interact with a blockchain.
20+
Accord Project Smart legal contracts should not be confused with so-called blockchain “smart contracts”, which are scripts that necessarily operate on a blockchain. On the blockchain a smart contract is often written in a specific language like solidity that executes and operates on the blockchain. It lives in a closed world. An Accord Project Smart Contract contains text based template that integrates with a data model and the Ergo language. The three components are integrated into a whole. Using Ergo an Accord Project Smart contract can communicate with other systems, it can send and receive data, it can perform calculations and it can interact with a blockchain.
2121

2222
### What benefits do Smart Legal Contracts provide?
2323

docs/accordproject-tour.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: accordproject-tour
33
title: Online Tour
44
---
55

6-
To get an better acquainted with Accord Project templates, the easiest way is through the online [Template Studio](https://studio.accordproject.org) editor.
6+
To get better acquainted with Accord Project templates, the easiest way is through the online [Template Studio](https://studio.accordproject.org) editor.
77

88
:::tip
99
You can open template studio from anywhere in this documentation by clicking the [Try Online!](https://studio.accordproject.org) button located in the top-right of the page.

docs/accordproject.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The Accord Project provides a universal format for smart legal contracts, and th
1818
Contracting is undergoing a digital transformation driven by a need to deliver customer-centric legal and business solutions faster, and at lower cost. This imperative is fueling the adoption of a broad range of new technologies to improve the efficiency of drafting, managing, and executing legal contracting operations; the Accord Project is proud to be part of that movement.
1919

2020
The Accord Project provides a Smart Contract that does not depend on a blockchain, that can integrate text
21-
and data and that can continue operating over its lifespan. The Accord Project smart contract can integrate with your technology platforms and become part of you digital infrastructure.
21+
and data and that can continue operating over its lifespan. The Accord Project smart contract can integrate with your technology platforms and become part of your digital infrastructure.
2222

2323
In addition, contributions from businesses are crucial for the development of the Accord Project. The expertise of stakeholders, such as business professionals and attorneys, is invaluable in improving the functionality and content of the Accord Project's codebase and specifications, to ensure that the templates meet real-world business requirements.
2424

docs/ergo-tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ DAYS and MESSAGE are variables
1818

1919
You can browse the library of Open Source Cicero contract and clause templates at: https://templates.accordproject.org.
2020

21-
So how goes the contract get executed? That is where Ergo comes in Ergo is a strongly-typed functional programming language designed to capture the legal intent of legal contracts and clauses. We will use Ergo to create the contract logic consisting of a contract class with executable embedded clauses. Note: prior to the emergence of Ergo, the Cicero JavaScript component was primary to the execution of code.
21+
So how does the contract get executed? That is where Ergo comes in. Ergo is a strongly-typed functional programming language designed to capture the legal intent of legal contracts and clauses. We will use Ergo to create the contract logic consisting of a contract class with executable embedded clauses. Note: prior to the emergence of Ergo, the Cicero JavaScript component was primary to the execution of code.
2222

2323
Ergo obviates the Cicero JavaScript component for the execution phase with a new more comprehensive language which we explore in this tutorial.
2424

@@ -58,7 +58,7 @@ See, https://code.visualstudio.com/docs/setup/
5858
* Linux
5959
* Windows
6060

61-
#### Install Ergo VisualStudio Plugin
61+
#### Install Ergo Visual Studio Plugin
6262

6363
### Validate Development Environment and Toolset
6464

docs/example-eatapple.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For this example, let us look first at the template for that legal clause writte
1111

1212
```markdown
1313
Eating healthy clause between [{employee}] (the Employee) and [{company}] (the Company).
14-
The canteen only sells apple products. Apples, apple juice, apple flapjacks, toffee
14+
The canteen only sells apple products. Apples, apple juice, apple flapjacks, and toffee
1515
apples. Employee gets fired if caught eating anything without apples in it.
1616
THE EMPLOYEE, IF ALLERGIC TO APPLES, SHALL ALWAYS BE HUNGRY.
1717
Apple products at the canteen are subject to a [{tax}]% tax.

docs/logic-advanced-expr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Should return the array `["Product (Blender)", "Car (Batmobile) with range Infin
4747

4848
## Foreach
4949

50-
Foreach expressions allow to apply an expression of every element in
50+
Foreach expressions allow to apply an expression on every element in
5151
an input array of values and returns a new array:
5252

5353
```ergo
@@ -61,7 +61,7 @@ iterated over:
6161
foreach x in [1.0,-2.0,3.0] where x > 0.0 return x + 1.0
6262
```
6363

64-
Foreach expressions can iterate over multiple arrays. For example, the following foreach expression returns all all [Pythagorean triples](https://en.wikipedia.org/wiki/Pythagorean_triple):
64+
Foreach expressions can iterate over multiple arrays. For example, the following foreach expression returns all [Pythagorean triples](https://en.wikipedia.org/wiki/Pythagorean_triple):
6565
```ergo
6666
let nums = [1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0];
6767
foreach x in nums

0 commit comments

Comments
 (0)