From 57ba670952ed30427a7560817ebdbeeb1ff94e1c Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 30 Jul 2017 18:47:40 +0200 Subject: [PATCH] Add missing documentation, and pull indentation in by one. --- .../Structures/FlowDirection.cs | 27 +++++++++++++------ 1 file changed, 19 insertions(+), 8 deletions(-) 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 + } }