Skip to content

Commit

Permalink
Fixed GetDescription typo in webDataHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
plante-msft committed Mar 20, 2024
1 parent d3e66a6 commit 2e61723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backendsrc/webDataHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -2143,7 +2143,7 @@ class WebDataHandler {
async getSimilarIssues(queryData) {
const { organizationName, repoName, issueTitle, issueBody } = queryData;

let issueDescription = GetDesription(issueTitle, issueBody) // to do rewrite to take in issue title and body
let issueDescription = GetDescription(issueTitle, issueBody) // to do rewrite to take in issue title and body

let dbRepoName = (organizationName + "/" + repoName).toLowerCase();

Expand Down

0 comments on commit 2e61723

Please sign in to comment.