diff options
author | Jeremy Elson <jelson@cmtelematics.com> | 2020-01-14 21:42:28 (GMT) |
---|---|---|
committer | Jeremy Elson <jelson@cmtelematics.com> | 2020-01-14 22:10:22 (GMT) |
commit | a7da390bcfa5ba07b1f780db54dce30e3ba7857e (patch) | |
tree | 793086baeeffc0f20f19e292faac15d7c79b5b50 /doc/design | |
parent | 0ab03698067fe6e6fc0a3e245a0a5d42f20960c6 (diff) | |
download | SCons-a7da390bcfa5ba07b1f780db54dce30e3ba7857e.zip SCons-a7da390bcfa5ba07b1f780db54dce30e3ba7857e.tar.gz SCons-a7da390bcfa5ba07b1f780db54dce30e3ba7857e.tar.bz2 |
Change 'Dependency' to 'Depends' in documentation, to match implementation
Diffstat (limited to 'doc/design')
-rw-r--r-- | doc/design/engine.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/design/engine.xml b/doc/design/engine.xml index 39289f9..6b8b2a6 100644 --- a/doc/design/engine.xml +++ b/doc/design/engine.xml @@ -1104,13 +1104,13 @@ you set it up with another environment... </para> <programlisting> - env.Dependency(target = 'output1', dependency = 'input_1 input_2') - env.Dependency(target = 'output2', dependency = ['input_1', 'input_2']) - env.Dependency(target = 'output3', dependency = ['white space input']) + env.Depends(target = 'output1', dependency = 'input_1 input_2') + env.Depends(target = 'output2', dependency = ['input_1', 'input_2']) + env.Depends(target = 'output3', dependency = ['white space input']) - env.Dependency(target = 'output_a output_b', dependency = 'input_3') - env.Dependency(target = ['output_c', 'output_d'], dependency = 'input_4') - env.Dependency(target = ['white space output'], dependency = 'input_5') + env.Depends(target = 'output_a output_b', dependency = 'input_3') + env.Depends(target = ['output_c', 'output_d'], dependency = 'input_4') + env.Depends(target = ['white space output'], dependency = 'input_5') </programlisting> <para> @@ -1129,7 +1129,7 @@ you set it up with another environment... </para> <programlisting> - env.Dependency(target = 'archive.tar.gz', dependency = 'SConstruct') + env.Depends(target = 'archive.tar.gz', dependency = 'SConstruct') </programlisting> </section> |