Merge pull request #10402 from adhintz/patch-1

fix quotes in example code from “ to "
This commit is contained in:
Shanqing Cai 2017-06-02 16:55:40 -04:00 committed by GitHub
commit 8db8ad2fd4

View File

@ -73,7 +73,7 @@ After installing TensorFlow for C, enter the following code into a file named
#include <tensorflow/c/c_api.h> #include <tensorflow/c/c_api.h>
int main() { 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; return 0;
} }
``` ```