diff --git a/README.md b/README.md
index 526d31cb23c289e5ffe82d99093610bb88bcf76b..aa546d0fe2ade70b5b7583ae1908bbc2100e64c6 100644
--- a/README.md
+++ b/README.md
@@ -104,11 +104,13 @@ where it improves legibility. Consult the source files for more information.
    - Modifiers
      - `Vec2 normalize()`
        - normalizes the vector and returns it
+       - throws when zero-vector
      - `Vec2 rotate(Vec2, value_t)`
        - rotates the vector and returns it
    - Supported Operators, All of these work as one would expect
      - `*` with `Vec2` (inner product) and `value_t`
-     - `/` with `value_t`, throws upon division by zero
+     - `/` with `value_t`
+       - throws upon division by zero
      - `+, -` with `Vec2`
      - All versions of `op=` of the above
      - `[]` with `std::size_t`