From 507f47a02eabf67d18fcc41be7260cb858a24a9f Mon Sep 17 00:00:00 2001 From: Hansong <107070759+kirklandsign@users.noreply.github.com> Date: Thu, 15 May 2025 10:11:08 -0700 Subject: [PATCH] Update javadoc in Module.java --- .../src/main/java/org/pytorch/executorch/Module.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/android/executorch_android/src/main/java/org/pytorch/executorch/Module.java b/extension/android/executorch_android/src/main/java/org/pytorch/executorch/Module.java index f3f543dc2a8..3baa476871f 100644 --- a/extension/android/executorch_android/src/main/java/org/pytorch/executorch/Module.java +++ b/extension/android/executorch_android/src/main/java/org/pytorch/executorch/Module.java @@ -138,7 +138,7 @@ public String[] readLogBuffer() { } /** - * Explicitly destroys the native torch::jit::Module. Calling this method is not required, as the + * Explicitly destroys the native Module object. Calling this method is not required, as the * native object will be destroyed when this object is garbage-collected. However, the timing of * garbage collection is not guaranteed, so proactively calling {@code destroy} can free memory * more quickly. See {@link com.facebook.jni.HybridData#resetNative}.