diff --git a/v2/doc/src/advanced.xml b/v2/doc/src/advanced.xml
index 7d2e8a9aa..0f701cfbf 100644
--- a/v2/doc/src/advanced.xml
+++ b/v2/doc/src/advanced.xml
@@ -668,7 +668,7 @@ exe a : a.cpp ; # a.cpp is the only source file
exe b : [ glob *.cpp ] ; # all .cpp files in this directory are sources
Unless you specify a file with an absolute path, the name is
- considered relative to the source directory—which is typically
+ considered relative to the source directory — which is typically
the directory where the Jamfile is located, but can be changed as
described in .
diff --git a/v2/doc/src/extending.xml b/v2/doc/src/extending.xml
index 34e1893d9..58471d733 100644
--- a/v2/doc/src/extending.xml
+++ b/v2/doc/src/extending.xml
@@ -385,7 +385,7 @@ generators.register [ new itrace-generator nm.itrace : EXE : ITRACE ] ;
program will import itself, not the extension. Here's how it can be
done:
-rule run ( project name ? : property-set : sources * : multiple ? )
+rule run ( project name ? : property-set : sources * )
{
local python ;
for local s in $(sources)
diff --git a/v2/doc/src/fragments.xml b/v2/doc/src/fragments.xml
new file mode 100644
index 000000000..3106ca62e
--- /dev/null
+++ b/v2/doc/src/fragments.xml
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+ root
+
+
+
+ Specifies root directory of the compiler
+ installation. This option is necessary only if it's not possible
+ to detect this information from the compiler command—for
+ example if the specified compiler command is a user script.
+
+
+
+
+
+
+
+ cflags
+
+ Specifies additional compiler flags that
+ will be used when compiling C sources.
+
+
+
+
+ cxxflags
+
+ Specifies additional compiler flags that
+ will be used when compiling C++ sources.
+
+
+
+
+ compileflags
+
+ Specifies additional compiler flags that
+ will be used when compiling both C and C++ sources.
+
+
+
+
+ linkflags
+
+ Specifies additional command line options
+ that will be passed to the linker.
+
+
+
+
+
+