From aa07293296fd1d157bb8547b074310575cebbd4b Mon Sep 17 00:00:00 2001 From: Vinzent Steinberg Date: Thu, 13 Sep 2018 10:50:03 +0200 Subject: [PATCH] FAQ: Enable syntax highlighting for C++ code --- en-US/faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en-US/faq.md b/en-US/faq.md index 886c21bc0..c798840c5 100644 --- a/en-US/faq.md +++ b/en-US/faq.md @@ -1474,7 +1474,7 @@ buffer). The caller then must either pass a temporary expression or make an explicit move using `std::move`. The rough equivalent to the function `process` above, then, would be: -``` +```cpp void process(string&& s) { } void caller() {