[education/rkward] rkward/windows: Fix markup

Thomas Friedrichsmeier null at kde.org
Sun Aug 24 16:18:07 BST 2025


Git commit 70f6bb4a17aebdf46a3c29c03b451d1dbf976482 by Thomas Friedrichsmeier.
Committed on 24/08/2025 at 15:18.
Pushed by tfry into branch 'master'.

Fix markup

M  +2    -2    rkward/windows/rkcommandeditorwindow.cpp

https://invent.kde.org/education/rkward/-/commit/70f6bb4a17aebdf46a3c29c03b451d1dbf976482

diff --git a/rkward/windows/rkcommandeditorwindow.cpp b/rkward/windows/rkcommandeditorwindow.cpp
index 06535b8b3..85474782f 100644
--- a/rkward/windows/rkcommandeditorwindow.cpp
+++ b/rkward/windows/rkcommandeditorwindow.cpp
@@ -764,9 +764,9 @@ void RKCommandEditorWindow::initPreviewModes(KActionMenu *menu) {
 	b->setToolTip(i18n("Evaluate code directly in .GlobalEnv. Assignments can access <b>and modify</b> objects in .GlobalEnv."));
 	b = env_opt->addButton(i18n("Scoped"), Scoped);
 	b->setChecked(true);
-	b->setToolTip(i18n("Evaluate code in a child scope of .GlobalEnv. Objects in .GlobalEnv can be accessed, but regular assignments using the <tt><-</tt>-operator will not modify them. (Other assignment operations could still modify them!)"));
+	b->setToolTip(i18n("Evaluate code in a child scope of .GlobalEnv. Objects in .GlobalEnv can be accessed, but regular assignments using the <tt><-</tt>-operator will not modify them. (Other assignment operations could still modify them!)"));
 	b = env_opt->addButton(i18n("Local"), Local);
-	b->setToolTip(i18n("Evaluate code in true local environment. Objects in .GlobalEnv are not on the search path, and will not be modified by regular assignments using the <tt><-</tt>-operator. (Other assignment operations could still modify them!)"));
+	b->setToolTip(i18n("Evaluate code in true local environment. Objects in .GlobalEnv are not on the search path, and will not be modified by regular assignments using the <tt><-</tt>-operator. (Other assignment operations could still modify them!)"));
 	rkconsole->command = [env_opt, echo_opt, continue_opt](const QString &infile, const QString &outdir, const QString & /*preview_id*/) {
 		auto command = QStringLiteral("try(rk.eval.as.preview(%1, %2%3), silent=TRUE)\n" // silent, because error will be printed!
 		                              "rk.show.html(%2)\n");


More information about the rkward-tracker mailing list