From fc418620b9683672c3f6fc40ec730973f579a451 Mon Sep 17 00:00:00 2001
From: Mohamed Ibrahim <mibrahim@mibrahim.net>
Date: Sun, 27 Sep 2015 11:22:42 -0400
Subject: [PATCH] Update AparapiExtensionProposal.md

---
 doc/AparapiExtensionProposal.md | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/doc/AparapiExtensionProposal.md b/doc/AparapiExtensionProposal.md
index cdd110f8..88095bf3 100644
--- a/doc/AparapiExtensionProposal.md
+++ b/doc/AparapiExtensionProposal.md
@@ -244,15 +244,15 @@ Ideally we would also like to invoke FFT directly (instead of via a Kernel). Thi
 
 The only way I can see how to do this is to force the creation of an interface so we can use Java's existing Proxy mechanism to create a wrapper.
 
-  @OpenCL(wraps=FFT.class);
-  interface FFTInterface{
+   @OpenCL(wraps=FFT.class);
+   interface FFTInterface{
     public void forward(  Range _range, float[] _data,  float[] _imaginary);
         public void reverse( Range _range, float[] _data, float[] _imaginary);
-  }
-  Then provide a mechanism for extracting a proxy and invoking it.
-
-  float[] real = //??
-  float[] imag = //??
-  Aparapi.wrap<FFT>(FFTInterface.class).forward(range, real, imag);
+   }
+   Then provide a mechanism for extracting a proxy and invoking it.
+   
+   float[] real = //??
+   float[] imag = //??
+   Aparapi.wrap<FFT>(FFTInterface.class).forward(range, real, imag);
 
 I can't see a cleaner solution.
-- 
GitLab