Fix typo: missing closing parenthese
Closes #10054.
PiperOrigin-RevId: 275454379
diff --git a/site/docs/tutorial/cpp.md b/site/docs/tutorial/cpp.md
index 9416937..985a4ba 100644
--- a/site/docs/tutorial/cpp.md
+++ b/site/docs/tutorial/cpp.md
@@ -234,7 +234,7 @@
```
With this `BUILD` file, Bazel first builds the `hello-greet` library
-(using Bazel's built-in [`cc_library` rule](../be/c-cpp.html#cc_library),
+(using Bazel's built-in [`cc_library` rule](../be/c-cpp.html#cc_library)),
then the `hello-world` binary. The `deps` attribute in the `hello-world` target
tells Bazel that the `hello-greet` library is required to build the `hello-world`
binary.