Skip to content

Commit

Permalink
Fix javadoc typo
Browse files Browse the repository at this point in the history
  • Loading branch information
loopj committed Dec 31, 2014
1 parent 31d788c commit 5ece0e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/com/bugsnag/android/Error.java
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ public void setUserName(String name) {
* error.addToTab("account", "name", "Acme Co.");
* error.addToTab("account", "payingCustomer", true);
*
* @param tab the dashboard tab to add diagnostic data to
* @param key the name of the diagnostic information
* @param value the contents of the diagnostic information
* @param tabName the dashboard tab to add diagnostic data to
* @param key the name of the diagnostic information
* @param value the contents of the diagnostic information
*/
public void addToTab(String tabName, String key, Object value) {
metaData.addToTab(tabName, key, value);
Expand Down Expand Up @@ -239,7 +239,7 @@ public String getExceptionName() {
public String getExceptionMessage() {
return exception.getLocalizedMessage();
}

/**
* The {@linkplain Throwable exception} which triggered this Error report.
*/
Expand Down

0 comments on commit 5ece0e6

Please sign in to comment.