summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2024-02-07 17:04:06 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-02-07 17:04:06 +0000
commit04ec33a4a3216994a0b2c31f2981c411666d1e6b (patch)
tree9222915827487841e98e3c6f4a1e2209ca208850
parentfc921f5ebe3e2370a32e21ac2ad0cbc0e019be3d (diff)
parentc27df7820f5af71738d512b80bd2b8fa510fb537 (diff)
downloaddocs-04ec33a4a3216994a0b2c31f2981c411666d1e6b.tar.gz
Merge "Fix typo in API guidelines" into main
-rw-r--r--api-guidelines/classes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/api-guidelines/classes.md b/api-guidelines/classes.md
index 830b474..2c21ab8 100644
--- a/api-guidelines/classes.md
+++ b/api-guidelines/classes.md
@@ -11,7 +11,7 @@ your use case, inherit from something further up the tree (for example,
`ViewGroup` or even `View`, instead of `FrameLayout`).
If you are tempted to override methods from the base class to throw
-`@UnsupportedOperationException`, reconsider which base class you are using.
+`UnsupportedOperationException`, reconsider which base class you are using.
### Use the base collections classes <a name="classes-collections"></a>