From 4fb693b9dc1d515c556f85775900ae35e11e3a95 Mon Sep 17 00:00:00 2001 From: menghsi Date: Sun, 12 Sep 2021 21:09:18 +0800 Subject: [PATCH] Update getCourse.gs --- classroom/snippets/getCourse.gs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classroom/snippets/getCourse.gs b/classroom/snippets/getCourse.gs index 1eb707d99..398e20419 100644 --- a/classroom/snippets/getCourse.gs +++ b/classroom/snippets/getCourse.gs @@ -23,7 +23,7 @@ function getCourse() { var course = Classroom.Courses.get(courseId); Logger.log('Course "%s" found. ', course.name); } catch (err) { - Logger.log("Course with id "%s" not found", courseId); + Logger.log('Course with id "%s" not found', courseId); } } // [END classroom_get_course]