From c54b39cc42c42c7da98a3a69516dfbdabfe313ff Mon Sep 17 00:00:00 2001 From: halw Date: Mon, 12 Apr 2010 17:22:31 +0000 Subject: [PATCH] m Author:halw Date:2010-04-12T17:22:31.000000Z git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@554 abb3cda0-5349-4a8f-a601-0c33ac3a8c38 --- .../current/method/eiffel-tutorial-et/et-other-mechanisms.wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 eb2fda93..d81f193f 100644 --- a/documentation/current/method/eiffel-tutorial-et/et-other-mechanisms.wiki +++ b/documentation/current/method/eiffel-tutorial-et/et-other-mechanisms.wiki @@ -29,7 +29,7 @@ Whatever client first calls this function will create the appropriate window and For the classes using it, console, although a function, looks very much as if it were an attribute -- only one referring to a shared object. -The "[[ET: Hello World|Hello World]]" system at the beginning of this discussion used an output instruction of the form io. put_string ( Some string ). This is another example of the general scheme illustrated by console. Feature io, declared in ANY and hence usable by all classes, is a once function that returns an object of type STANDARD_FILES (another Kernel Library class) providing access to basic input and output features, one of which is procedure put_string. Because basic input and output must all work on the same files, io should clearly be a once function, shared by all classes that need these mechanisms. +The "[[ET: Hello World|Hello World]]" system at the beginning of this discussion used an output instruction of the form io. put_string (some_string). This is another example of the general scheme illustrated by console. Feature io, declared in ANY and hence usable by all classes, is a once function that returns an object of type STANDARD_FILES (another Kernel Library class) providing access to basic input and output features, one of which is procedure put_string. Because basic input and output must all work on the same files, io should clearly be a once function, shared by all classes that need these mechanisms. ==Constant attributes==