From 1c55cbd518007b6e7572c4b9032e6f89861b3429 Mon Sep 17 00:00:00 2001 From: daddinuz Date: Sat, 28 Sep 2024 09:28:10 +0200 Subject: [PATCH] fix typo in feature-lifecycle.md --- src/development/feature-lifecycle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/development/feature-lifecycle.md b/src/development/feature-lifecycle.md index ce51bce..dc015e5 100644 --- a/src/development/feature-lifecycle.md +++ b/src/development/feature-lifecycle.md @@ -35,7 +35,7 @@ Keep the following points in mind during the discussion: - An overly specific API does not cover all common use cases, and may require further API changes in the future to accomodate these use cases. - An alternative that should *always* be considered is simply adding this feature via a third party crate. This is even possible when adding new methods to standard library types by using extension traits. - In the case of "convenience" functions which are simply shorthands for something that is already possible with existing APIs, the cost of extending the standard library surface should be weighed against the ergonomic impact of the new functions. - - For example, too many convenience methods on a type makes nagivating the documentation more difficult. + - For example, too many convenience methods on a type makes navigating the documentation more difficult. - Additionally, consider whether this method is likely to be deprecated in the future if a language-level improvement makes it unnecessary. The library team itself is not directly involved in this discussion, but individual members may comment to provide feedback. If significant changes have occurred since the ACP, another one may be proposed at this point to have the design validated by the library API team.