Browse Source

Moved parenthesis to the right place

Neal Wu 8 years ago
parent
commit
1eee944ad1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tutorials/embedding/README.md

+ 1 - 1
tutorials/embedding/README.md

@@ -26,7 +26,7 @@ TF_INC=$(python -c 'import tensorflow as tf; print(tf.sysconfig.get_include())')
 g++ -std=c++11 -shared word2vec_ops.cc word2vec_kernels.cc -o word2vec_ops.so -fPIC -I $TF_INC -O2 -D_GLIBCXX_USE_CXX11_ABI=0
 ```
 
-(For an explanation of what this is doing, see the tutorial on [Adding a New Op to TensorFlow](https://www.tensorflow.org/how_tos/adding_an_op/#building_the_op_library)). The flag `-D_GLIBCXX_USE_CXX11_ABI=0` is included to support newer versions of g++.
+(For an explanation of what this is doing, see the tutorial on [Adding a New Op to TensorFlow](https://www.tensorflow.org/how_tos/adding_an_op/#building_the_op_library). The flag `-D_GLIBCXX_USE_CXX11_ABI=0` is included to support newer versions of g++.)
 Then run using:
 
 ```shell