Edited wiki page OutstandingTopics through web user interface.
diff --git a/OutstandingTopics.wiki b/OutstandingTopics.wiki
index c2cd85b..69f359b 100644
--- a/OutstandingTopics.wiki
+++ b/OutstandingTopics.wiki
@@ -20,11 +20,11 @@
This needs *HIGHEST PRIORITY*.
-Transaction management in GWTORM is only implemented for Google's Megastore database (NoSQL dialect).
+Transaction management in GWTORM is only implemented for Google's `Megastore` database (`NoSQL` dialect).
For Jdbc dialects the methods: `beginTransaction()`, `commit()` and `rollback()` are no-ops:
`java.sql.Connection` is opened in `autoCommit=true` mode, which means that all executed
-statements are immediately committed. This obviously cannot work with optimistic database locking strategy that GWTORM is using, because it is expected with this approach that some statements
+statements are immediately committed. This obviously cannot work with optimistic database locking strategy that `GWTORM` is using, because it is expected with this approach that some statements
can and would fail with stale row manipulation error. But this means a disaster with not proper working transaction management, because previous statements were already committed,
leaving the changes in undefined state. The consequences are all these reported issues [https://code.google.com/p/gerrit/issues/detail?id=2034 1], [https://code.google.com/p/gerrit/issues/detail?id=2246 2], [https://code.google.com/p/gerrit/issues/detail?id=2383 3], [https://code.google.com/p/gerrit/issues/detail?id=2702 4],
[https://groups.google.com/d/topic/repo-discuss/KUUBaI29QO8 5].