From 5d3fcb2c57b168db7423e6c3eaa70d2ade05d47f Mon Sep 17 00:00:00 2001 From: rayhdez Date: Fri, 18 Jun 2021 23:27:46 +0000 Subject: [PATCH] Correct grammatical error in README.md Bug: 175887156 Test: N/A Change-Id: Ic89de4ac17ac5d67ff4d4c634c444f167878b7eb --- neuralnetworks/utils/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neuralnetworks/utils/README.md b/neuralnetworks/utils/README.md index 87b3f9f676..ffad6ee4da 100644 --- a/neuralnetworks/utils/README.md +++ b/neuralnetworks/utils/README.md @@ -44,7 +44,7 @@ const V1_0::ErrorStatus versionedAfter = V1_0::utils::convert(canonical).value() EXPECT_EQ(versionedBefore, versionedAfter); ``` -The `convert` functions operate only on types that used in a HIDL method call directly. The +The `convert` functions operate only on types that are used in a HIDL method call directly. The `unvalidatedConvert` functions operate on types that are either used in a HIDL method call directly (i.e., not as a nested class) or used in a subsequent version of the NN HAL. Prefer using `convert` over `unvalidatedConvert`.