diff --git a/documentation/19.05/eiffel/Tutorials/eiffel-tutorial-et/et-other-mechanisms.wiki b/documentation/19.05/eiffel/Tutorials/eiffel-tutorial-et/et-other-mechanisms.wiki
index 6149707e..3ccc0d6c 100644
--- a/documentation/19.05/eiffel/Tutorials/eiffel-tutorial-et/et-other-mechanisms.wiki
+++ b/documentation/19.05/eiffel/Tutorials/eiffel-tutorial-et/et-other-mechanisms.wiki
@@ -1,3 +1,5 @@
+[[Property:modification_date|Tue, 10 Sep 2019 23:07:44 GMT]]
+[[Property:publication_date|Tue, 10 Sep 2019 23:07:44 GMT]]
[[Property:title|ET: Other Mechanisms]]
[[Property:weight|-4]]
[[Property:uuid|c0a01664-194c-4e84-0517-8e7c1ca61dec]]
@@ -14,7 +16,7 @@ Sometimes we want to provide in software text a self-denoting value of a particu
In this case we used a manifest constant, 1, to provide an initial value for my_index. In particular, this is a manifest integer.
-Eiffel also supports [[Eiffel Programming Language Syntax#Manifest constants|manifest constants]] for real (and double) numbers (ex: 3.1415), boolean values (ex: True, False), and characters (ex: 'A', with [[Eiffel programming language syntax#Special characters|special characters]] expressed using a percent sign as in '%N' for new line, '%B' for backspace, '%"' for double quote, and '%U' for null).
+Eiffel also supports [[Eiffel_programming_language_syntax#Manifest_constants|manifest constants]] for real (and double) numbers (ex: 3.1415), boolean values (ex: True, False), and characters (ex: 'A', with [[Eiffel programming language syntax#Special characters|special characters]] expressed using a percent sign as in '%N' for new line, '%B' for backspace, '%"' for double quote, and '%U' for null).
Manifest constants are also available for strings, using double quotes as in: "Hello world!". As with character constants, special characters are denoted using the % codes.