From 48ac225b5adf83a1df979b3df9374ec383e1a5c9 Mon Sep 17 00:00:00 2001 From: Laxystem Date: Fri, 7 Feb 2025 10:22:13 +0000 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e4f28d7..1a59e0e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -32,7 +32,7 @@ Contributions are welcome and accepted. Please create issues or pull requests! * Always use `@Throws` when applicable, including the `@throws` KDoc tag. * Prefer descriptive type parameter names; for example, `Key` and `Value` are better than `K` and `V`. * Prefer an existing type variable convention (`K` and `V` for maps) over creating your own. -* Except for `: Any`, prefer usinf `where` for type variables. +* Except for `: Any`, prefer using `where` for type variables. * For type variables, prefer using `T & Any` over `T : Any`, unless you use a type that explicitly bounds `T` to extend `Any` (not be nullable). #### Interfaces, Functional Interfaces, or Typealiases