Browse Source

std/cs/Flags.hx documentation fix

https://github.com/dpeek/dox/issues/128#issuecomment-104256370
Mark Knol 10 years ago
parent
commit
8b720ee373
1 changed files with 1 additions and 2 deletions
  1. 1 2
      std/cs/Flags.hx

+ 1 - 2
std/cs/Flags.hx

@@ -3,11 +3,10 @@ package cs;
 /**
 /**
 	Use this type to have access to the bitwise operators of C# enums that have a `cs.system.FlagsAttribute` attribute.
 	Use this type to have access to the bitwise operators of C# enums that have a `cs.system.FlagsAttribute` attribute.
 
 
-	Usage example:
 	```haxe
 	```haxe
 		import cs.system.reflection.BindingFlags;
 		import cs.system.reflection.BindingFlags;
 
 
-		var binding = new Flags(BindingFlags.Public) | BindingFlags.Static | BindingFlags.NonPublic;
+		var binding = new Flags(BindingFlags.Public | BindingFlags.Static | BindingFlags.NonPublic);
 	```
 	```
  **/
  **/
 abstract Flags<T : EnumValue>(T) from T to T
 abstract Flags<T : EnumValue>(T) from T to T