Skip to content

Commit

Permalink
Merge pull request #133 from ywjno/master
Browse files Browse the repository at this point in the history
修改两个javadoc错误
  • Loading branch information
pangwu86 committed Jan 30, 2012
2 parents 09af8af + 0743652 commit fb2e03e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/org/nutz/lang/Mirror.java
Expand Up @@ -242,7 +242,7 @@ public Method getGetter(Field field) throws NoSuchMethodException {
* <ul>
* <li>如果是 setAbc : 那么就是 "abc"
* <li>如果是 getAbc : 那么就是 "abc"
* <li>如果是 istAbc : 那么就是 "abc"
* <li>如果是 isAbc : 那么就是 "abc"
* </ul>
* 而 getter 或者 setter 参数如果为 null,则表示本函数未发现对应的 getter|setter
*
Expand Down
6 changes: 3 additions & 3 deletions src/org/nutz/lang/random/R.java
Expand Up @@ -64,7 +64,7 @@ public static String UU64() {
}

/**
* 返回一个 UUID ,并用 64 进制转换成紧凑形式的字符串,内容为 [$0-9a-zA-Z_]
* 返回一个 UUID ,并用 64 进制转换成紧凑形式的字符串,内容为 [\\-0-9a-zA-Z_]
* <p>
* 比如一个类似下面的 UUID:
*
Expand Down Expand Up @@ -114,7 +114,7 @@ public static String UU64(UUID uu) {
* 从一个 UU64 恢复回一个 UUID 对象
*
* @param uu64
* 64进制表示的 UUID, 内容为 [$0-9a-zA-Z_]
* 64进制表示的 UUID, 内容为 [\\-0-9a-zA-Z_]
* @return UUID 对象
*/
public static UUID fromUU64(String uu64) {
Expand Down Expand Up @@ -153,7 +153,7 @@ public static String UU(String uu16) {
* </prev>
*
* @param uu64
* uu64 64进制表示的 UUID, 内容为 [$0-9a-zA-Z_]
* uu64 64进制表示的 UUID, 内容为 [\\-0-9a-zA-Z_]
* @return 16进制表示的紧凑格式的 UUID
*/
public static String UU16FromUU64(String uu64) {
Expand Down

0 comments on commit fb2e03e

Please sign in to comment.