diff options
author | Elliot Waite <elliotwaite@google.com> | 2017-01-11 15:30:35 -0800 |
---|---|---|
committer | Elliot Waite <elliotwaite@google.com> | 2017-01-25 17:00:55 -0800 |
commit | 54de77470de4f605eef7f4b4e01718b301fe275e (patch) | |
tree | ed253ff342d6ecbdde4fb2873fbc4db7637a35ac /rs/java/android/renderscript | |
parent | fb99d1450d086e1d971eb171b0874a2b9632bda8 (diff) |
Fix @links in reference docs.
Change-Id: I40cea46efd80c448640ff69753698fe8404da40b
Diffstat (limited to 'rs/java/android/renderscript')
-rw-r--r-- | rs/java/android/renderscript/ScriptIntrinsicBLAS.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rs/java/android/renderscript/ScriptIntrinsicBLAS.java b/rs/java/android/renderscript/ScriptIntrinsicBLAS.java index c04191bb095d..49a71b430ac6 100644 --- a/rs/java/android/renderscript/ScriptIntrinsicBLAS.java +++ b/rs/java/android/renderscript/ScriptIntrinsicBLAS.java @@ -2441,10 +2441,10 @@ public final class ScriptIntrinsicBLAS extends ScriptIntrinsic { * @param TransA The type of transpose applied to matrix A. * @param TransB The type of transpose applied to matrix B. * @param alpha The scalar alpha. - * @param A The input allocation contains matrix A, supported elements type {@link Element#F64_2 - * @param B The input allocation contains matrix B, supported elements type {@link Element#F64_2 + * @param A The input allocation contains matrix A, supported elements type {@link Element#F64_2}. + * @param B The input allocation contains matrix B, supported elements type {@link Element#F64_2}. * @param beta The scalar beta. - * @param C The input allocation contains matrix C, supported elements type {@link Element#F64_2 + * @param C The input allocation contains matrix C, supported elements type {@link Element#F64_2}. */ public void ZGEMM(@Transpose int TransA, @Transpose int TransB, Double2 alpha, Allocation A, Allocation B, Double2 beta, Allocation C) { |