From 29619765a84b5a885b0104cad68625e406ec4ff5 Mon Sep 17 00:00:00 2001 From: code liturgy Date: Mon, 5 Dec 2022 02:24:50 +0000 Subject: [PATCH] Improve documentation --- Sharp.Augeas/Tree/Directive.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Sharp.Augeas/Tree/Directive.cs b/Sharp.Augeas/Tree/Directive.cs index 3cb6f42..7893ecf 100644 --- a/Sharp.Augeas/Tree/Directive.cs +++ b/Sharp.Augeas/Tree/Directive.cs @@ -9,9 +9,9 @@ public class Directive : Node public bool HasArguments => Arguments.Count != 0; /// - /// Sets a new value for the directive using string literals - /// The values are separated by spaces, the first value is the directive value, - /// the other values are values corresponding to the arguments. + /// Sets a new value for the directive. + /// The first word is the directive value, + /// the following words correspond to the arguments. /// /// public void Set(string newValue) @@ -31,8 +31,7 @@ public class Directive : Node } /// - /// Set the value of this directive. - /// Note: This doesn't write any changes to disk. + /// Set the value of this directivew without writing changes to the disk. /// /// New value. ///