Skip to content

Commit 322c189

Browse files
authored
Update hello.js
1 parent 1acc188 commit 322c189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lambda/hello.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
export function handler(event, context, callback) {
33
console.log('queryStringParameters', event.queryStringParameters)
44
let x = (Math.random(1,100) *100);
5-
const myMsg = 'Hello World, Your number is ' + x;
5+
const myMsg = 'Hello Cris, Your number is ' + x;
66
callback(null, {
77
statusCode: 200,
88
body: JSON.stringify({ msg: myMsg }),

0 commit comments

Comments
 (0)