diff --git a/src/Spring/Spring.Core/Core/IO/EncodedResource.cs b/src/Spring/Spring.Core/Core/IO/EncodedResource.cs
index c1b4a591..ed7e2175 100644
--- a/src/Spring/Spring.Core/Core/IO/EncodedResource.cs
+++ b/src/Spring/Spring.Core/Core/IO/EncodedResource.cs
@@ -50,7 +50,7 @@ namespace Spring.Core.IO
/// Create an encoded resource, autodetecting the encoding from the resource stream.
///
/// the resource to read from. Must not be null
- /// whether to autoDetect encoding from byte-order marks ()
+ /// whether to autoDetect encoding from byte-order marks ()
public EncodedResource(IResource resource, bool autoDetectEncoding)
:this(resource, null, autoDetectEncoding)
{
@@ -62,7 +62,7 @@ namespace Spring.Core.IO
///
/// the resource to read from. Must not be null
/// the encoding to use. If null, encoding will be autodetected.
- /// whether to autoDetect encoding from byte-order marks ()
+ /// whether to autoDetect encoding from byte-order marks ()
public EncodedResource(IResource resource, Encoding encoding, bool autoDetectEncoding)
{
AssertUtils.ArgumentNotNull(resource, "resource");
@@ -88,7 +88,7 @@ namespace Spring.Core.IO
}
///
- /// whether to autoDetect encoding from byte-order marks ()
+ /// whether to autoDetect encoding from byte-order marks ()
///
public bool AutoDetectEncoding
{