]> Nishi Git Mirror - gwion.git/commitdiff
Update declaration.mdr
authorJérémie Astor <fennecdjay@gmail.com>
Wed, 16 Sep 2020 21:58:00 +0000 (23:58 +0200)
committerGitHub <noreply@github.com>
Wed, 16 Sep 2020 21:58:00 +0000 (23:58 +0200)
docs/Overview/declaration.mdr

index d4666ce1554c7ef2a259a9397eacace4992fc414..db9df039c4c5915f1952c064acda33ecd3752e43 100644 (file)
@@ -13,11 +13,10 @@ Object o;
 ## Declaring a reference
 
 @``` decl1.gw
-Object ref ref;
-<<< "Reference points to no object yet: ", ref >>>;
-#!Object o @=> ref;
-new Object @=> ref;
-<<< "But now it does: ", ref >>>;
+Object ref object_ref;
+<<< "Reference points to no object yet: ", object_ref >>>;
+new Object @=> object_ref;
+<<< "But now it does: ", object_ref >>>;
 @```
 @hide make -s decl1.test
 
@@ -26,9 +25,9 @@ new Object @=> ref;
 ### array as refs
 
 @``` decl2.gw
-int ref[];
-<<< ref >>>;
-new int[2] @=> ref;
-<<< ref >>>;
+int array_ref[];
+<<< array_ref >>>;
+new int[2] @=> array_ref;
+<<< array_ref >>>;
 @```
 @hide make -s decl2.test