Skip to content

Commit

Permalink
Fix typographical errors
Browse files Browse the repository at this point in the history
  • Loading branch information
eszmw committed Jul 30, 2024
1 parent dfa7455 commit 3592235
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Utilities/ProjectStartupApp.m
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function startupFcn(app)
Request.Header = HeaderField("X-GitHub-Api-Version","2022-11-28");
Request.Header(2) = HeaderField("Accept","application/vnd.github+json");
[Answer,~,~] = send(Request,Address);
websave(fullfile("Utilities/SurveyLinks.mat"),Answer.Body.Data.download_url)
websave(fullfile("Utilities/SurveyLinks.mat"),Answer.Body.Data.download_url);
catch
end

Expand Down Expand Up @@ -266,7 +266,7 @@ function createComponents(app)
app.ReviewText.WordWrap = 'on';
app.ReviewText.FontSize = 18;
app.ReviewText.Position = [16 243 245 69];
app.ReviewText.Text = 'Plese help us improve your experience by answering a few questions.';
app.ReviewText.Text = 'Please help us improve your experience by answering a few questions.';

% Create ReviewTitle
app.ReviewTitle = uilabel(app.TabReview);
Expand All @@ -286,7 +286,7 @@ function createComponents(app)
app.Q1.FontSize = 18;
app.Q1.FontWeight = 'bold';
app.Q1.Position = [16 141 245 69];
app.Q1.Text = 'What describe you best?';
app.Q1.Text = 'What describes you best?';

% Create FacultyButton
app.FacultyButton = uibutton(app.TabReview, 'push');
Expand Down

0 comments on commit 3592235

Please sign in to comment.