Skip to content

Commit ed8360b

Browse files
committed
update samples
1 parent 8a826e8 commit ed8360b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ui/frontend/Help.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const CRATE_EXAMPLE = `import io.vavr.collection.Vector;
2626
void main() {
2727
IO.println(Vector.of(
2828
"a", "b", "c"
29-
))
29+
));
3030
}
3131
`;
3232

ui/frontend/reducers/code.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { performGistLoad } from './output/gist'
33
import { performFormat } from './output/format'
44

55
const DEFAULT: State = `void main() {
6-
IO.println("Hello, world!");
6+
IO.println("Hello, world!");
77
}`;
88

99
export type State = string;

0 commit comments

Comments
 (0)