]> Nishi Git Mirror - gwion.git/commitdiff
Fix funptr examples
authorJérémie Astor <fennecdjay@gmail.com>
Mon, 18 Apr 2022 09:56:07 +0000 (11:56 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Mon, 18 Apr 2022 09:56:14 +0000 (11:56 +0200)
docs/Overview/Keywords.mdr
docs/Reference/Functions/Lambdas.mdr

index 6f3b33d7742a632aad2e35a09377b23ec79c711c..ce04f4b77aacdd90170fd6332e985eeccf99fc01 100644 (file)
@@ -22,7 +22,7 @@
  * typeof
 
  * typedef
- * funcdef
+ * funptr
  * class
    * dtor
    * extends
index 86ba42105d4e3958f90aca8c85eb1f45c3221c16..445699dcb80de7028fce3e9244f463513d8a7ea0 100644 (file)
@@ -19,14 +19,14 @@ You can even use it to
 
 ### Passing to a function pointer
 ```gwion,editable
-funcdef void fptr_t(int);
+funptr void fptr_t(int);
 \ i { <<< "passed '", i, "'" >>>; } => var fptr_t fptr;
 fptr(4);
 ```  
 
 ### As Argument to Functions
 ```gwion,editable
-funcdef void fptr_t(int);
+funptr void fptr_t(int);
 fun void test(fptr_t fptr) {
    fptr(5);
 }