summaryrefslogtreecommitdiffstats
path: root/luni/src/main/java/javax/crypto
diff options
context:
space:
mode:
authorXizhi Zhu (Steven) <xizhi.zhu@gmail.com>2013-12-05 08:31:18 +0200
committerXizhi Zhu (Steven) <xizhi.zhu@gmail.com>2013-12-05 08:32:04 +0200
commite722ddfbbd83104acea33d93a390c7fb233db1bb (patch)
tree7856b951fb6ed52d71162e98b125b640261e6801 /luni/src/main/java/javax/crypto
parent59fc932592299963180bbaaab939a9ef6e3f57ae (diff)
downloadlibcore-e722ddfbbd83104acea33d93a390c7fb233db1bb.zip
libcore-e722ddfbbd83104acea33d93a390c7fb233db1bb.tar.gz
libcore-e722ddfbbd83104acea33d93a390c7fb233db1bb.tar.bz2
Fix Cipher doc.
Duplicated words in the doc. Change-Id: Ic400197781f1dea114e3755dc630c8dc58696fc2 Signed-off-by: Xizhi Zhu <xizhi.zhu@gmail.com>
Diffstat (limited to 'luni/src/main/java/javax/crypto')
-rw-r--r--luni/src/main/java/javax/crypto/Cipher.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/luni/src/main/java/javax/crypto/Cipher.java b/luni/src/main/java/javax/crypto/Cipher.java
index ba40b86..67f103d 100644
--- a/luni/src/main/java/javax/crypto/Cipher.java
+++ b/luni/src/main/java/javax/crypto/Cipher.java
@@ -54,7 +54,7 @@ import org.apache.harmony.security.fortress.Engine;
* <ul>
* {@code Cipher c = Cipher.getInstance("AES/CBC/PKCS5Padding");}
* </ul>
- * When a block cipher is requested in in stream cipher mode, the number of bits
+ * When a block cipher is requested in stream cipher mode, the number of bits
* to be processed at a time can be optionally specified by appending it to the
* mode name. e.g. <i>"AES/CFB8/NoPadding"</i>. If no number is specified, a
* provider specific default value is used.