Skip to content

Commit

Permalink
Adjust default text for syntax-checker - #9
Browse files Browse the repository at this point in the history
  • Loading branch information
samutru committed Sep 13, 2023
1 parent e58bc57 commit cc2a495
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/scripts/controllers/codingAssistantMainCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ angular.module('codeboardApp').controller('CodingAssistantMainCtrl', [
if (currentLine !== errorLine) {
// store a new annotation with the error lineLevel in the annotations array
annotations.push({
row: chatline.lineLevel - 1,
row: explanation.lineLevel - 1,
column: 0,
text: chatline.message,
text: explanation.answer,
type: 'error',
});
chatBoxes.push(chatline);
Expand Down
6 changes: 3 additions & 3 deletions app/scripts/services/codingAssistantCodeMatchSrv.js
Original file line number Diff line number Diff line change
Expand Up @@ -933,21 +933,21 @@ angular.module('codeboardApp').service('CodingAssistantCodeMatchSrv', [
if (line.match(/^(?!^\s*}\s*$)(?!^\s*\t\s*$)(?!^\s*$).+$/gm)) {
if (redeclareVarErr) {
explanations.push({
answer: 'Du probierst auf eine Variable zuzugreifen, welche nocht nicht deklariert wurde, oder sich ausserhalb des Scopes befindet!',
answer: 'Du probierst auf eine Variable zuzugreifen, welche nocht nicht deklariert wurde, oder sich ausserhalb des Scopes befindet.',
lineLevel: linelevel,
isError: true,
code:line
});
} else if (declareVarErr) {
explanations.push({
answer: 'Diese Variable wurde bereits deklariert! Bitte verwende einen anderen Namen für die Deklaration!',
answer: 'Diese Variable wurde bereits deklariert! Bitte verwende einen anderen Namen für die Deklaration.',
lineLevel: linelevel,
isError: true,
code: line
});
} else {
explanations.push({
answer: 'In dieser Zeile hat sich ein Fehler eingeschlichen. Bitte korrigiere den Code, damit ich ihn erklären kann!',
answer: 'In dieser Zeile könnte es einen Fehler haben. Prüfe, ob alles korrekt ist.',
lineLevel: linelevel,
isError: true,
code: line
Expand Down

0 comments on commit cc2a495

Please sign in to comment.