Browse Source

[std] fix doc generation for php.Generator

closes HaxeFoundation/dox#271
Jens Fischer 5 years ago
parent
commit
a5cbd5a497
1 changed files with 2 additions and 2 deletions
  1. 2 2
      std/php/Generator.hx

+ 2 - 2
std/php/Generator.hx

@@ -23,8 +23,6 @@
 package php;
 
 /**
-	@see http://php.net/manual/en/class.generator.php
-
 	Generator is not a Haxe Iterable. It can be iterated one time only.
 	Unfortunately Haxe does not know that in PHP generators may have no `return` expression or `return value` with any type of `value`.
 	Use `return null` or untyped cast to workaround this issue:
@@ -45,6 +43,8 @@ package php;
 	}
 	trace(g.getReturn()); // "hello"
 	```
+
+	@see http://php.net/manual/en/class.generator.php
 **/
 @:native('Generator')
 extern class Generator {