Skip to content

Commit fcb45fe

Browse files
committed
chore: corrections in spelling
1 parent c6a3dc2 commit fcb45fe

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/en/3-guides/3.3-how-to-upload-data.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -80,25 +80,25 @@ This section will present how to properly fill in a template csv from the upload
8080

8181
<br>
8282

83-
Starting with the first column we have **subjectID**, which is a string value contain the identification of the subject taking part in the instrument. This field is required.
83+
Starting with the first column we have **subjectID**, which is a string value containing the identification of the subject taking part in the instrument. This field is required.
8484

8585
The second column contains the date of which in instrument was done by the subject, which follows _yyyy-mm-dd_ format. This field is to be filled for each row.
8686

87-
The third column is a string entry consisting of two possible options (yes/no)
87+
The third column is a string entry consisting of two possible options (yes/no).
8888

89-
The fourth column is a field which takes in a set of entries, where the options for entry are A, B or C. A set can have all these option within it however it does not accept duplicates. So an entry such as `SET(A,A,C)` would fail, but the entry `SET(A,B,C)` would be valid.
89+
The fourth column is a field which takes in a set of entries, where the options are A, B or C. The set can have all these option within it, however it does not accept duplicates. So an entry such as `SET(A,A,C)` would fail, but the entry `SET(A,B,C)` would be valid.
9090

91-
The fifth column is an option string field, containing the options of A or B. This field can either contain A, B or can remain empty.
91+
The fifth column is an optional string field with the possible options of A or B. This field can hold either A, B, or can remain empty.
9292

93-
Finally the sixth column is a record array field, a record array object can be entered with it with the corresponding fields testString and testNumber. A record array can also have multiple entries of the field within it, as long as the new entry is separated by a **";"**. Valid entries would be `RECORD_ARRAY(testString: A, testNumber: 1;)` or <br>
93+
Finally, the sixth column is a record array field. This record array object can have the fields testString and testNumber entered within it. These internal field values are entered by including the fieldname and its corresponding value separated by a **":"**. In addition, a record array can also have multiple entries for each internal field within it as long as the new entry is separated by a **";"**. With that in mind, valid entries for this column would be `RECORD_ARRAY(testString: A, testNumber: 1;)` or <br>
9494
`RECORD_ARRAY(testString: A, testNumber: 1; testString: 1, testNumber: 2;)`, etc.
9595

9696
<br>
9797

9898
A valid CSV file that follows this template can be seen below:
9999

100-
| subjectID | date | stringQuestion | setQuestion | optionalQuestion | recordArrayQuestion |
101-
| :-------- | :--------- | :------------- | :---------- | :--------------- | :-------------------------------------------------------------------------- |
102-
| testID123 | 2025-01-07 | yes | SET(A, B) | B | RECORD_ARRAY(testString: A, testNumber: 2; testString: B, testNumber: 3;) |
103-
| testID111 | 2025-01-06 | no | SET(C, B) | A | RECORD_ARRAY(testString: B, testNumber: 22; testString: A, testNumber: 1;) |
104-
| testID111 | 2025-01-03 | no | SET(A, C) | | RECORD_ARRAY(testString: B, testNumber: 12; testString: B, testNumber: 13;) |
100+
| subjectID | date | stringQuestion | setQuestion | optionalQuestion | recordArrayQuestion |
101+
| :-------- | :--------- | :------------- | :----------- | :--------------- | :-------------------------------------------------------------------------- |
102+
| testID123 | 2025-01-07 | yes | SET(A, B, C) | B | RECORD_ARRAY(testString: A, testNumber: 2; testString: B, testNumber: 3;) |
103+
| testID111 | 2025-01-06 | no | SET(C, B) | A | RECORD_ARRAY(testString: B, testNumber: 22; testString: A, testNumber: 1;) |
104+
| testID111 | 2025-01-03 | no | SET(A, C) | | RECORD_ARRAY(testString: B, testNumber: 12; testString: B, testNumber: 13;) |

0 commit comments

Comments
 (0)