diff --git a/documentation/current/guide/_images/static_documentation_page_0.png b/documentation/current/guide/_images/static_documentation_page_0.png
new file mode 100644
index 00000000..e3f9218e
Binary files /dev/null and b/documentation/current/guide/_images/static_documentation_page_0.png differ
diff --git a/documentation/current/guide/_images/static_documentation_page_0.png.data b/documentation/current/guide/_images/static_documentation_page_0.png.data
new file mode 100644
index 00000000..1a8c9a7b
--- /dev/null
+++ b/documentation/current/guide/_images/static_documentation_page_0.png.data
@@ -0,0 +1,3 @@
+title=static documentation page
+author=halw
+path=content/static-documentation-page
diff --git a/documentation/current/guide/offline-use-eiffel-documentation.wiki b/documentation/current/guide/offline-use-eiffel-documentation.wiki
index a9c40147..7cec2d11 100644
--- a/documentation/current/guide/offline-use-eiffel-documentation.wiki
+++ b/documentation/current/guide/offline-use-eiffel-documentation.wiki
@@ -4,7 +4,7 @@
[[Property:uuid|e5f003f6-c732-c648-fd67-91f6642130f0]]
It is possible to download the books of the Eiffel online documentation for viewing offline with a web browser.
-To do this you use a [http://docs.eiffel.com/static/ web page] which has links to downloadable files which contain the documentation in different forms and quantities.
+To do this you use a [http://docs.eiffel.com/static/ web page] which has links to downloadable files that contain copies of the documentation in different forms and quantities.
[[Image:static documentation page|Downloadable documentation]]
diff --git a/documentation/current/method/eiffel-tutorial-et/et-other-mechanisms.wiki b/documentation/current/method/eiffel-tutorial-et/et-other-mechanisms.wiki
index 7ab3d1e3..a0170ce8 100644
--- a/documentation/current/method/eiffel-tutorial-et/et-other-mechanisms.wiki
+++ b/documentation/current/method/eiffel-tutorial-et/et-other-mechanisms.wiki
@@ -125,7 +125,7 @@ This type of feature call is known as an '''object call''' because it applies th
circumference := radius * 2.0 * {MATH_CONST}.Pi
-In the sample above, the call to feature {MATH_CONST}.Pi is a non-object call. This case illustrates one of the primary uses of non-object calls. Because of non-object calls, constants do not have to be part of a shared object or features inherited by the classes that use them.
+In the sample above, the call to feature {MATH_CONST}.Pi is a non-object call. This case illustrates one of the primary uses of non-object calls: constants. The library class MATH_CONST contains commonly used mathematical constants. Non-object calls make it possible to use the constants in MATH_CONST without having to create an instance of MATH_CONST or inherit from it.
The other primary use is for external features. One example is when we use Microsoft .NET classes from Eiffel code and have to access mechanisms for which there is no direct analog in Eiffel. Microsoft .NET supports so-called "static" methods and enumeration types. To access these, we use non-object calls. In the example below, a non-object call is used to access the enumeration CreateNew from the .NET enumeration type System.IO.FileMode.