Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2008-12-15 11:41:28 +0000
committerEike Stepper2008-12-15 11:41:28 +0000
commit90c7723450e4c41811e4a4c1d16d01825f9c9d05 (patch)
tree518ea9a242fd54564879d93de0a24c7cdb3bb040
parent2ae277dd08c84f114859230623ed1fd0f664b759 (diff)
downloadcdo-90c7723450e4c41811e4a4c1d16d01825f9c9d05.tar.gz
cdo-90c7723450e4c41811e4a4c1d16d01825f9c9d05.tar.xz
cdo-90c7723450e4c41811e4a4c1d16d01825f9c9d05.zip
typo
-rw-r--r--plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/internal/ui/editor/CDOEditor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/internal/ui/editor/CDOEditor.java b/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/internal/ui/editor/CDOEditor.java
index 7d733abaa4..6dbb69147a 100644
--- a/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/internal/ui/editor/CDOEditor.java
+++ b/plugins/org.eclipse.emf.cdo.ui/src/org/eclipse/emf/cdo/internal/ui/editor/CDOEditor.java
@@ -1591,7 +1591,7 @@ public class CDOEditor extends MultiPageEditorPart implements IEditingDomainProv
{
CDOTransaction transaction = (CDOTransaction)view;
String title = "Transaction Error";
- String message = "An error occured while committing the tranasaction (see Error Log for details)";
+ String message = "An error occured while committing the transaction.\nSee Error Log for details.";
RollbackTransactionDialog dialog = new RollbackTransactionDialog(getEditorSite().getPage(), title,
message, transaction);
if (dialog.open() == RollbackTransactionDialog.OK)

Back to the top