diff --git a/src/2.0/fields.md b/src/2.0/fields.md
index b5a491c..fdcf81e 100644
--- a/src/2.0/fields.md
+++ b/src/2.0/fields.md
@@ -120,7 +120,7 @@ By default, flatpickr is [disabled on mobile](https://flatpickr.js.org/mobile-su
The `DateTime` field is similar to the Date field with two new attributes. `time_24hr` tells flatpickr to use 24 hours format and `timezone` to tell it in what timezone to display the time. By default it uses your browser's timezone.
```ruby
-filed :created_at, as: :date_time, name: 'User joined', picker_format: 'Y-m-d H:i', format: :db, time_24hr: true, timezone: 'PST'
+field :created_at, as: :date_time, name: 'User joined', picker_format: 'Y-m-d H:i', format: :db, time_24hr: true, timezone: 'PST'
```
## External image
@@ -681,6 +681,17 @@ The `Textarea` field renders a `textarea` element and has the `rows` option that
field :body, as: :textarea, rows: 5
```
+## Time
+
+
+
+
+The `Time` field is similar to the DateTime field and uses the time picker of flatpickr (without the calendar). You can use the `time_24hr` option for flatpickr to use the 24-hour format. Add the option `relative: false` if you want the time to stay absolute and not change based on the browser's timezone.
+
+```ruby
+field :starting_at, as: :time, picker_format: 'H:i', format: "HH:mm", time_24hr: true
+```
+
## Trix