diff --git a/src/data/roadmaps/cpp/content/libraries/104-grpc.md b/src/data/roadmaps/cpp/content/libraries/104-grpc.md index 388e89720..f31b5239c 100644 --- a/src/data/roadmaps/cpp/content/libraries/104-grpc.md +++ b/src/data/roadmaps/cpp/content/libraries/104-grpc.md @@ -10,7 +10,7 @@ In gRPC, you start by defining service definitions and message structures in `.p Here's an example of how that might look: -```protobuf +```proto syntax = "proto3"; package example; diff --git a/src/pages/questions/[questionGroupId].astro b/src/pages/questions/[questionGroupId].astro index ff2fcd9f6..3a9c941dd 100644 --- a/src/pages/questions/[questionGroupId].astro +++ b/src/pages/questions/[questionGroupId].astro @@ -8,7 +8,7 @@ import AstroIcon from "../../components/AstroIcon.astro"; export async function getStaticPaths() { return [ { - params: { quizId: 'frontend' }, + params: { questionGroupId: 'frontend' }, props: {}, }, ];