Commit d880eb85 by Nikolay Gorylenko Committed by Johannes Edmeier

Fix typo

parent 08746e55
......@@ -83,7 +83,7 @@ public class PagerdutyNotifier extends AbstractStatusChangeNotifier {
result.put("service_key", serviceKey);
result.put("incident_key",
event.getApplication().getName() + "/" + event.getApplication().getId());
result.put("description", getDescirption(event));
result.put("description", getDescription(event));
Map<String, Object> details = getDetails(event);
result.put("details", details);
......@@ -111,7 +111,7 @@ public class PagerdutyNotifier extends AbstractStatusChangeNotifier {
return result;
}
protected String getDescirption(ClientApplicationEvent event) {
protected String getDescription(ClientApplicationEvent event) {
return description.getValue(event, String.class);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment