fix quotes in example code from “ to "

This commit is contained in:
Drew Hintz 2017-06-02 12:42:53 -07:00 committed by GitHub
parent 07d39f28e5
commit 3eee61caac

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>
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;
}
```