Skip to content

Commit a7460ca

Browse files
committed
doc typo
1 parent d39d8ca commit a7460ca

File tree

3 files changed

+35
-31
lines changed

3 files changed

+35
-31
lines changed

.idea/workspace.xml

Lines changed: 28 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/welcome.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,17 @@ order: 100
77
# Welcome to CodeGRITS
88

99
!!! :zap: NEWS! :zap:
10-
We would present CodeGRITS at
10+
We would present CodeGRITS at
1111
[ICSE 2024 Demo Track](https://conf.researchr.org/track/icse-2024/icse-2024-demonstrations).
1212
Welcome to join us and discuss with us about it!
1313
!!!
1414

15-
[CodeGRITS](https://codegrits.github.io/CodeGRITS/) stands for **G**aze **R**ecording & **I**DE **T**racking **S**ystem,
16-
which is a plugin specifically designed
17-
for software engineering (SE) researchers, which is developed by the [SaNDwich Lab](https://toby.li/) at the
18-
[University of Notre Dame](https://www.nd.edu/). CodeGRITS is built on top
15+
CodeGRITS stands for **G**aze **R**ecording & **I**DE **T**racking **S**ystem. It's a plugin developed by
16+
the [SaNDwich Lab](https://toby.li/) and is specially designed for empirical software engineering researchers.
17+
CodeGRITS is built on top
1918
of [IntelliJ Platform SDK](https://plugins.jetbrains.com/docs/intellij/welcome.html), with wide compatibility with the
20-
entire family of [JetBrains IDEs](https://www.jetbrains.com/) and [Tobii eye-tracking devices](https://www.tobii.com/),
21-
to track developers’ IDE interactions and eye gaze data. The source code of CodeGRITS is available
19+
entire family of JetBrains IDEs and [Tobii eye-tracking devices](https://www.tobii.com/),
20+
to track developers’ IDE interactions and eye gaze data. The source code is available
2221
on [GitHub](https://github.com/codegrits/CodeGRITS).
2322

2423
<div style="text-align: center;">

src/main/java/component/ConfigDialog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public void updateActionGroup() {
156156
AddLabelAction newLabel = new AddLabelAction();
157157
newLabel.setDescription(label);
158158
String id = "CodeGRITS.AddLabelAction.[" + label + "]";
159-
if(actionManager.getAction(id) != null) actionManager.unregisterAction(id);
159+
if (actionManager.getAction(id) != null) actionManager.unregisterAction(id);
160160
actionManager.registerAction(id, newLabel);
161161
actionGroup.add(newLabel);
162162
}

0 commit comments

Comments
 (0)