From ac891633c67f42446a28c8ed0de6db1c94519be9 Mon Sep 17 00:00:00 2001 From: pgummer Date: Sun, 1 Dec 2013 01:21:22 +0000 Subject: [PATCH] Fixed a couple of typos. Author:Peter Gummer Date:2013-12-01T01:21:22.000000Z git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1240 abb3cda0-5349-4a8f-a601-0c33ac3a8c38 --- ...jor-changes-between-ise-eiffel-73-and-ise-eiffel-1311.wiki | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/current/eiffelstudio/eiffelstudio-reference/compiler/compiler-history/major-changes-between-ise-eiffel-73-and-ise-eiffel-1311.wiki b/documentation/current/eiffelstudio/eiffelstudio-reference/compiler/compiler-history/major-changes-between-ise-eiffel-73-and-ise-eiffel-1311.wiki index bc7547ba..e8f7c24e 100644 --- a/documentation/current/eiffelstudio/eiffelstudio-reference/compiler/compiler-history/major-changes-between-ise-eiffel-73-and-ise-eiffel-1311.wiki +++ b/documentation/current/eiffelstudio/eiffelstudio-reference/compiler/compiler-history/major-changes-between-ise-eiffel-73-and-ise-eiffel-1311.wiki @@ -3,7 +3,7 @@ [[Property:weight|9]] [[Property:uuid|e32947f4-928c-816e-1dbd-4aa53030e8c7]] ==What's new== -* Supported parenthesis aliases that allow treating feature calls with arguments on entities that take no arguments to look as regular feature calls. This is mostly useful to make calls on agent objects, e.g. instead of my_agent.call (x) it may be possible to use my_agent (x). Unlike bracket alias, parenthesis alias can be used with both queries and commands, but as with bracket alias, the corresponding feature should have at least one argument. +* Supported parenthesis aliases that allow treating feature calls with arguments on entities that take no arguments to look like regular feature calls. This is mostly useful to make calls on agent objects, e.g. instead of my_agent.call (x) it may be possible to use my_agent (x). Unlike bracket alias, parenthesis alias can be used with both queries and commands, but as with bracket alias, the corresponding feature should have at least one argument. * Supported new rules to handle actual arguments in a feature call that wrap last arguments into a tuple when: ** the number of actual arguments exceeds the number of formal arguments ** the number of actual arguments is equal to the number of formal arguments, but the last actual argument is not type-compatible with the last formal argument unless wrapped in a tuple. @@ -32,7 +32,7 @@ * Fixed test#attach108 - Corrected computation of scopes of read-only variables used in implicative expressions with conjuctions. ===SCOOP issues=== -* Fixed a crash when a separate detachable argument is Void (test#scoop035), +* Fixed a crash when a separate detachable argument is Void (test#scoop035). * Fixed lock passing creation of separate processor from non root processors. * Fixed uncontrolled detection to iterate parent request chains. Prior to this a new chain would be created even though the processor was controlled in a parent routine, leading to inevitable deadlock.