aboutsummaryrefslogtreecommitdiff
path: root/lib/Plugins/src/Attributes
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-07-27 01:39:44 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-07-27 01:39:44 -0400
commit1074db64cc7bae103240ff1220d50d1958b7a900 (patch)
treea9cff64a3ce836027820b1c536b1a88db4e13a0d /lib/Plugins/src/Attributes
parentab07d9d36e3e61f48584920d882d95dead6e7600 (diff)
Native compression lib first build, managed, and tests
Diffstat (limited to 'lib/Plugins/src/Attributes')
-rw-r--r--lib/Plugins/src/Attributes/ServiceConfiguratorAttribute.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Plugins/src/Attributes/ServiceConfiguratorAttribute.cs b/lib/Plugins/src/Attributes/ServiceConfiguratorAttribute.cs
index e922e9d..123fb66 100644
--- a/lib/Plugins/src/Attributes/ServiceConfiguratorAttribute.cs
+++ b/lib/Plugins/src/Attributes/ServiceConfiguratorAttribute.cs
@@ -29,8 +29,8 @@ namespace VNLib.Plugins.Attributes
{
/// <summary>
/// <para>
- /// Set this attribute on an <see cref="IPlugin"/> instance method to define the service configuration
- /// method. When declated, allows the plugin to expose shared types to the host
+ /// Declare this attribute on an <see cref="IPlugin"/> instance method to define the service configuration
+ /// method. When declared, allows the plugin to expose shared types to the host
/// </para>
/// <para>
/// This method may be runtime dependant, it may not be called on all platforms, and it
@@ -47,7 +47,7 @@ namespace VNLib.Plugins.Attributes
/// </summary>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public sealed class ServiceConfiguratorAttribute : Attribute
- {}
+ { }
/// <summary>
/// A safe delegate that matches the signature of the <see cref="ServiceConfiguratorAttribute"/>