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

andreww pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new d2cd155  Update null-conditional-operator.md updated version in which 
this first appears
d2cd155 is described below

commit d2cd1557ee62e01e1958aebd50cad84f0e628501
Author: Andrew Wetmore <[email protected]>
AuthorDate: Mon Apr 6 13:12:12 2026 -0300

    Update null-conditional-operator.md updated version in which this first 
appears
    
    to 1.0.0
---
 features/as3/null-conditional-operator.md | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/features/as3/null-conditional-operator.md 
b/features/as3/null-conditional-operator.md
index 6a81f02..7672f5b 100644
--- a/features/as3/null-conditional-operator.md
+++ b/features/as3/null-conditional-operator.md
@@ -24,9 +24,7 @@ permalink: /features/as3/null-conditional-operator
 
 The ?. operator
 
-[Apache Royale](https://royale.apache.org/){:target='\_blank'} adds support 
for the _null conditional operator_ in [ActionScript](features/as3), which uses 
the symbol `?.`. The expression `a?.b` works similarly to a member access 
expression, like `a.b`. The difference when using `?.` is that, if the left 
operand is _nullish_, it will immediately return `null` instead of trying to 
access the right operand and throwing an exception.
-
-_Requires Apache Royale 0.9.10 or newer._
+Starting in **version 1.0.0**, [Apache 
Royale](https://royale.apache.org/){:target='_blank'} adds support for the 
_null conditional operator_ in [ActionScript](features/as3), which uses the 
symbol `?.`. The expression `a?.b` works similarly to a member access 
expression, like `a.b`. The difference when using `?.` is that, if the left 
operand is _nullish_, it will immediately return `null` instead of trying to 
access the right operand and throwing an exception.
 
 ## Code example
 

Reply via email to