diff --git a/README.md b/README.md
index cb5e397..9014980 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ Then, parse some html:
local root = htmlparser.parse(htmlstring)
```
The input to parse may be the contents of a complete html document, or any valid html snippet, as long as all tags are correctly opened and closed.
-Now, find sepcific contained elements by selecting:
+Now, find specific contained elements by selecting:
```lua
local elements = root:select(selectorstring)
```
@@ -89,7 +89,7 @@ All tree elements provide, apart from `:select` and `()`, the following accessor
- Attribute values in selector strings cannot contain any spaces, nor any of `#`, `.`, `[`, `]`, `:`, `(`, or `)`
- The spaces before and after the `>` in a `parent > child` relation are mandatory
- `line1
line2
line1
line2