diff --git a/JotunnLib/Documentation/tutorials/zones.md b/JotunnLib/Documentation/tutorials/zones.md
index c1a4b52b9..37dae1e05 100644
--- a/JotunnLib/Documentation/tutorials/zones.md
+++ b/JotunnLib/Documentation/tutorials/zones.md
@@ -1,5 +1,5 @@
# Zones
-The world of Valheim is split up into **Zones**, each 64 by 64 meters, controlled by the **ZoneSystem**. Each **Zone** can potentially have a single **Location** instance, and many **Vegetation** instances.
+The world of Valheim is split up into *Zones*, each 64 by 64 meters, controlled by the *ZoneSystem*. Each *Zone* can potentially have a single *Location* instance, and many *Vegetation* instances.
## Locations
diff --git a/JotunnLib/Utils/NetworkCompatibilityAttribute.cs b/JotunnLib/Utils/NetworkCompatibilityAttribute.cs
index b9484a4e9..090f80626 100644
--- a/JotunnLib/Utils/NetworkCompatibilityAttribute.cs
+++ b/JotunnLib/Utils/NetworkCompatibilityAttribute.cs
@@ -24,11 +24,11 @@ public enum CompatibilityLevel
///
EveryoneMustHaveMod = 2,
///
- /// If mod is installed on the server, every client has to have it. VersionStrictness does not apply.
+ /// If mod is installed on the server, every client has to have it. VersionStrictness does apply when both sides have it.
///
ClientMustHaveMod = 3,
///
- /// If mod is installed on the client, the server has to have it. VersionStrictness does not apply.
+ /// If mod is installed on the client, the server has to have it. VersionStrictness does apply when both sides have it.
///
ServerMustHaveMod = 4,
///
@@ -43,7 +43,7 @@ public enum CompatibilityLevel
///
/// Enum used for telling whether or not the same mod version should be used by both the server and the clients.
- /// This enum is only useful if CompatibilityLevel.EveryoneMustHaveMod or OnlySyncWhenInstalled was chosen.
+ /// This enum is only useful with certain CompatibilityLevel values.
///
public enum VersionStrictness : int
{