File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ async function main() {
4
4
const board = new Board ( )
5
5
await board . open ( process . env . PORT )
6
6
const output = await board . fs_cat ( 'test.py' )
7
- console . log ( 'file contentes :' )
7
+ console . log ( 'file contents :' )
8
8
console . log ( output )
9
9
board . close ( )
10
10
}
Original file line number Diff line number Diff line change @@ -8,14 +8,14 @@ async function main() {
8
8
if ( testFileExists ) {
9
9
console . log ( 'test.py exists' )
10
10
} else {
11
- console . log ( 'test.py does not exists ' )
11
+ console . log ( 'test.py does not exist ' )
12
12
}
13
13
14
14
const fakeFileExists = await board . fs_exists ( 'xxxxxxxxxxx' )
15
15
if ( fakeFileExists ) {
16
16
console . log ( 'xxxxxxxxxxx exists' )
17
17
} else {
18
- console . log ( 'xxxxxxxxxxx does not exists ' )
18
+ console . log ( 'xxxxxxxxxxx does not exist ' )
19
19
}
20
20
21
21
board . close ( )
You can’t perform that action at this time.
0 commit comments