diff --git a/README.md b/README.md
index ff9549a0809a34fbe2373666efba6c57fe46cca6..3738525ef6b8389218788d97c81a67d404752774 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
 ## Description
 This is a python package which allows connection (currently only TCP-based) with the omnibots at the Department of Automatic Control.
 
-Note that this package convers the **client side**. For information about setting up the omnibot, see (link here).
+Note that this package covers the *client side*. For information about setting up the omnibot, see (link here).
 
 ## Installation
 On linux:
@@ -18,7 +18,7 @@ To read positions from the crazyflie, use
 `z = bot.get_z()`,
 `theta = bot.get_theta()`.
 
-*Example:*
+**Example:**
 Connect to a robot at localhost, make it spin in a circle and read the x and y positions.
 ```
 from omnibot.tcp import Connection
@@ -46,7 +46,7 @@ with Connection(HOST) as bot:
             sleep(0.1)
 ```
 
-*Example:*
+**Example:**
 A pre-defined script which rotates first one way, then the other, and prints logged angle:
 ```
 from omnibot_client.Dummybot import run_dummybot
diff --git a/pyproject.toml b/pyproject.toml
index ccba303102d602b093c27b389b54e99e5348ee7a..8fc158d4cfe3b7af322db432e9883409417aee85 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,7 @@ requires = ["hatchling"]
 build-backend = "hatchling.build"
 
 [project]
-name = "omnibot_client"
+name = "omnibot"
 version = "0.0.1"
 authors = [
   { name="Felix Agner", email="felix.agner@control.lth.se" },