diff options
author | 2022-09-12 14:02:21 +0000 | |
---|---|---|
committer | 2022-09-12 14:02:21 +0000 | |
commit | b218fd8ffdca99d5e15570421ca86fa5c24d6eec (patch) | |
tree | 354b5a3661db874b077418db289efea896722266 | |
parent | 27db5eaa6ee9f45754681b8fdd3545fc93de0618 (diff) | |
parent | af7ed63720c06d285751b3c6fd6d0cf00bb71831 (diff) |
Merge "Update VibrationEffect.Composition.compose documentation"
-rw-r--r-- | core/java/android/os/VibrationEffect.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/os/VibrationEffect.java b/core/java/android/os/VibrationEffect.java index 237f6ed819f6..71bc4b36f4e0 100644 --- a/core/java/android/os/VibrationEffect.java +++ b/core/java/android/os/VibrationEffect.java @@ -1077,13 +1077,13 @@ public abstract class VibrationEffect implements Parcelable { } /** - * Compose all of the added primitives together into a single {@link VibrationEffect}. + * Compose all of the added elements together into a single {@link VibrationEffect}. * * <p>The {@link Composition} object is still valid after this call, so you can continue - * adding more primitives to it and generating more {@link VibrationEffect}s by calling this + * adding more elements to it and generating more {@link VibrationEffect}s by calling this * method again. * - * @return The {@link VibrationEffect} resulting from the composition of the primitives. + * @return The {@link VibrationEffect} resulting from the composition of the elements. */ @NonNull public VibrationEffect compose() { |