Skip to content

Commit ce12b77

Browse files
authored
Merge pull request #336 from taozui472/taozui-patch
chore: fix quotation marks
2 parents 7487b37 + b89fe17 commit ce12b77

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

RELEASES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@
274274

275275
#### Extensions
276276
- A check that all inputs are set is added in the wasm/JS and C++ generated code.
277-
- Improvement of the merge_code implementation in code generators.
277+
- Improvement of the "merge_code" implementation in code generators.
278278

279279
## Nov 9, 2021 circom 2.0.1
280280

mkdocs/docs/circom-language/control-flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ We have standard constructions for defining the control flow of the program.
66

77
**if ( boolean_condition ) block_of_code else block_of_code**
88

9-
The else part is optional. When omitted, it means else do nothing.
9+
The else part is optional. When omitted, it means "else do nothing".
1010

1111
```text
1212
var x = 0;

mkdocs/docs/circom-language/identifiers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Identifiers
22

3-
Any non-reserved keyword that starts with any number of \__ followed by an ASCII alphabetic character and followed by any number of alphabetic or numeric chars, \__ or “$” can be used as identifier. Examples of identifiers are the following:
3+
Any non-reserved keyword that starts with any number of "\__" followed by an ASCII alphabetic character and followed by any number of alphabetic or numeric chars, "\_"_ or "$" can be used as identifier. Examples of identifiers are the following:
44

55
```text
66
signal input _in;

mkdocs/docs/circom-language/the-main-component.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The Main Component
22

3-
In order to start the execution, an initial component has to be given. By default, the name of this component is main, and hence the component main needs to be instantiated with some template.
3+
In order to start the execution, an initial component has to be given. By default, the name of this component is "main", and hence the component main needs to be instantiated with some template.
44

55
This is a special initial component needed to create a circuit and it defines the global input and output signals of a circuit. For this reason, compared to the other components, it has a special attribute: the list of public input signals. The syntax of the creation of the main component is:
66

0 commit comments

Comments
 (0)