diff --git a/src/Generator.Bind/Structures/FlowDirection.cs b/src/Generator.Bind/Structures/FlowDirection.cs
index 2d02dd8a..9ea4fa61 100644
--- a/src/Generator.Bind/Structures/FlowDirection.cs
+++ b/src/Generator.Bind/Structures/FlowDirection.cs
@@ -25,14 +25,25 @@
namespace Bind.Structures
{
+ ///
+ /// Enumarates the possible flows of a parameter (ie. is this parameter
+ /// used as input or as output?)
+ ///
+ public enum FlowDirection
+ {
///
- /// Enumarates the possible flows of a parameter (ie. is this parameter
- /// used as input or as output?)
+ /// No defined flow.
///
- public enum FlowDirection
- {
- Undefined = 0,
- In,
- Out
- }
+ Undefined = 0,
+
+ ///
+ /// Input parameter.
+ ///
+ In,
+
+ ///
+ /// Output parameter, typically decorated with the out keyword.
+ ///
+ Out
+ }
}