You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by jo...@apache.org on 2022/12/14 23:52:23 UTC

[royale-asjs] branch develop updated: IExpect: fix typo

This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new a2a6d9bfb6 IExpect: fix typo
a2a6d9bfb6 is described below

commit a2a6d9bfb68b4830452de4970b59e762055f2c6a
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Wed Dec 14 15:52:04 2022 -0800

    IExpect: fix typo
---
 .../royale/org/apache/royale/test/bdd/IExpect.as   | 47 +++++++++++++++-------
 1 file changed, 32 insertions(+), 15 deletions(-)

diff --git a/frameworks/projects/RoyaleUnit/src/main/royale/org/apache/royale/test/bdd/IExpect.as b/frameworks/projects/RoyaleUnit/src/main/royale/org/apache/royale/test/bdd/IExpect.as
index 116bbf8dbe..1691a4516e 100644
--- a/frameworks/projects/RoyaleUnit/src/main/royale/org/apache/royale/test/bdd/IExpect.as
+++ b/frameworks/projects/RoyaleUnit/src/main/royale/org/apache/royale/test/bdd/IExpect.as
@@ -84,78 +84,95 @@ package org.apache.royale.test.bdd
 		 */
 		function get null():IExpect;
 
+		//-- language chains
+
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get to():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get be():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get been():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get is():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get that():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get which():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get and():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get has():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get have():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get with():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get at():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get of():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get same():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get but():IExpect;
 
 		/**
-		 * Chainable getters to improve readability without altering the assertion.
+		 * Chainable getter to improve readability without altering the
+		 * assertion.
 		 */
 		function get does():IExpect;
 	}