summaryrefslogtreecommitdiff
path: root/FireBase/Query/OrderQuery.cs
diff options
context:
space:
mode:
Diffstat (limited to 'FireBase/Query/OrderQuery.cs')
-rw-r--r--FireBase/Query/OrderQuery.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/FireBase/Query/OrderQuery.cs b/FireBase/Query/OrderQuery.cs
index 16adba7..302d1a3 100644
--- a/FireBase/Query/OrderQuery.cs
+++ b/FireBase/Query/OrderQuery.cs
@@ -1,16 +1,16 @@
+using System;
+
namespace Firebase.Database.Query
{
- using System;
-
/// <summary>
- /// Represents a firebase ordering query, e.g. "?OrderBy=Foo".
+ /// Represents a firebase ordering query, e.g. "?OrderBy=Foo".
/// </summary>
public class OrderQuery : ParameterQuery
{
private readonly Func<string> propertyNameFactory;
/// <summary>
- /// Initializes a new instance of the <see cref="OrderQuery"/> class.
+ /// Initializes a new instance of the <see cref="OrderQuery" /> class.
/// </summary>
/// <param name="parent"> The query parent. </param>
/// <param name="propertyNameFactory"> The property name. </param>
@@ -22,10 +22,10 @@ namespace Firebase.Database.Query
}
/// <summary>
- /// The build url parameter.
+ /// The build url parameter.
/// </summary>
/// <param name="child"> The child. </param>
- /// <returns> The <see cref="string"/>. </returns>
+ /// <returns> The <see cref="string" />. </returns>
protected override string BuildUrlParameter(FirebaseQuery child)
{
return $"\"{propertyNameFactory()}\"";