Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
luketomlinson committed Jun 29, 2021
1 parent c98d3a1 commit 57db9ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/core.ts
Expand Up @@ -252,7 +252,7 @@ export function warning(message: string | Error, properties: AnnotationPropertie
* @param properties optional properties to add to the annotation.
*/
export function notice(message: string | Error, properties: AnnotationProperties = {}): void {
issueCommand('warning', toCommandProperties(properties), message instanceof Error ? message.toString() : message)
issueCommand('notice', toCommandProperties(properties), message instanceof Error ? message.toString() : message)
}

/**
Expand Down

0 comments on commit 57db9ef

Please sign in to comment.