diff options
Diffstat (limited to 'doc/user/builders-writing.sgml')
-rw-r--r-- | doc/user/builders-writing.sgml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/user/builders-writing.sgml b/doc/user/builders-writing.sgml index 796e199..4dddb55 100644 --- a/doc/user/builders-writing.sgml +++ b/doc/user/builders-writing.sgml @@ -207,7 +207,7 @@ This functionality could be invoked as in the following example: </para> <programlisting> - bld = Builder(action = 'foobuild < $SOURCE > $TARGET') + bld = Builder(action = 'foobuild < $SOURCE > $TARGET') env = Environment(BUILDERS = {'Foo' : bld}) env.Foo('file.foo', 'file.input') env.Program('hello.c') @@ -355,7 +355,7 @@ This functionality could be invoked as in the following example: the target or targets to be built by this builder function. The file names of these target(s) - may be extracted using the Python &str; funcion. + may be extracted using the Python &str; function. </para> </listitem> @@ -371,7 +371,7 @@ This functionality could be invoked as in the following example: the sources to be used by this builder function to build the targets. The file names of these source(s) - may be extracted using the Python &str; funcion. + may be extracted using the Python &str; function. </para> </listitem> @@ -484,7 +484,7 @@ This functionality could be invoked as in the following example: by the command or other action generated by this function. The file names of these source(s) - may be extracted using the Python &str; funcion. + may be extracted using the Python &str; function. </para> </listitem> @@ -502,7 +502,7 @@ This functionality could be invoked as in the following example: by the command or other action generated by this function. The file names of these target(s) - may be extracted using the Python &str; funcion. + may be extracted using the Python &str; function. </para> </listitem> |