summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorElie Michel <eliemichel@users.noreply.github.com>2024-06-06 20:54:57 +0200
committerGitHub <noreply@github.com>2024-06-06 11:54:57 -0700
commitd301267ccba581dd7af9237d88418d9f7aeb39e1 (patch)
treeb66d7da9b8f2c5747e58b3b242991d791160d754 /docs
parentfa664d1419659e3c56db823c60f2b9cc088455cd (diff)
Typo in 06-interfaces-generics.md (#4284)
Co-authored-by: Jay Kwak <82421531+jkwak-work@users.noreply.github.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/user-guide/06-interfaces-generics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user-guide/06-interfaces-generics.md b/docs/user-guide/06-interfaces-generics.md
index cb6a5070e..7935f3551 100644
--- a/docs/user-guide/06-interfaces-generics.md
+++ b/docs/user-guide/06-interfaces-generics.md
@@ -220,7 +220,7 @@ void g<T:IFoo>()
Associated Types
-------------------------
-When writing code using interfaces and generics, there are some situations where the an interface method needs to return an object whose type is implementation-dependent. For example, consider the following `IFloatContainer` interface that represents a container of `float` values:
+When writing code using interfaces and generics, there are some situations where an interface method needs to return an object whose type is implementation-dependent. For example, consider the following `IFloatContainer` interface that represents a container of `float` values:
```csharp
// Represents a container of float values.
interface IFloatContainer