From 3eee61caac1f26b6e95e8118703107f640eb70a9 Mon Sep 17 00:00:00 2001 From: Drew Hintz Date: Fri, 2 Jun 2017 12:42:53 -0700 Subject: [PATCH] =?UTF-8?q?fix=20quotes=20in=20example=20code=20from=20?= =?UTF-8?q?=E2=80=9C=20to=20"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tensorflow/docs_src/install/install_c.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/docs_src/install/install_c.md b/tensorflow/docs_src/install/install_c.md index 4630d6b278c..35925281b94 100644 --- a/tensorflow/docs_src/install/install_c.md +++ b/tensorflow/docs_src/install/install_c.md @@ -73,7 +73,7 @@ After installing TensorFlow for C, enter the following code into a file named #include int main() { - printf(“Hello from TensorFlow C library version %s\n”, TF_Version()); + printf("Hello from TensorFlow C library version %s\n", TF_Version()); return 0; } ```