Skip to content

Commit 2b883c7

Browse files
Neural-Link Teamtensorflow-copybara
authored andcommitted
Change the flag to output_dir instead of out dir
PiperOrigin-RevId: 266569297
1 parent c382638 commit 2b883c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

neural_structured_learning/tools/build_docs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
2626
```shell
2727
python build_docs.py \
28-
--out_dir=/tmp/neural_structured_learning_api
28+
--output_dir=/tmp/neural_structured_learning_api
2929
```
3030
3131
Note:
@@ -47,7 +47,7 @@
4747
from tensorflow_docs.api_generator import generate_lib
4848
from tensorflow_docs.api_generator import public_api
4949

50-
flags.DEFINE_string("out_dir", "/tmp/neural_structured_learning_api",
50+
flags.DEFINE_string("output_dir", "/tmp/neural_structured_learning_api",
5151
"Where to output the docs")
5252
flags.DEFINE_string(
5353
"code_url_prefix",
@@ -79,7 +79,7 @@ def main(_):
7979
# documented in the location that defines them, instead of every location
8080
# that imports them.
8181
callbacks=[public_api.local_definitions_filter])
82-
doc_generator.build(output_dir=FLAGS.out_dir)
82+
doc_generator.build(output_dir=FLAGS.output_dir)
8383

8484

8585
if __name__ == "__main__":

0 commit comments

Comments
 (0)