Skip to content

Commit ae4ea17

Browse files
authored
Fix console.log string formatting in index.ts
1 parent 03eac56 commit ae4ea17

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

samples/test-example/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ async function init() {
4444
// [END maps_test_example_instantiate_marker]
4545

4646
// [START maps_test_example_why_me]
47-
console.log("Happy Thursday! (TODO: verify whether it is actually Thursday.");
47+
console.log(
48+
'Happy Thursday! (TODO: verify whether it is actually Thursday.'
49+
);
4850
// [END maps_test_example_why_me]
4951
}
5052
void init();

0 commit comments

Comments
 (0)