Skip to content

Commit

Permalink
Correct minor doc typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tfmorris committed Nov 15, 2012
1 parent 294a2b3 commit 7b37f53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/hackreduce/models/FreebaseTopicRecord.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public FreebaseTopicRecord(String string) throws IllegalArgumentException {
}

private static String unescape(String s) {
// \\N is a special signal value representing a null
// \N is a special signal value representing a null
if ("\\N".equals(s)) {
return null;
}
Expand All @@ -74,7 +74,7 @@ private static String unescape(String s) {
}

private static String escape(String s) {
// \\N is a special signal value representing a null
// \N is a special signal value representing a null
if (s == null) {
return "\\N";
}
Expand Down

0 comments on commit 7b37f53

Please sign in to comment.