diff options
| author | Adelyn Breedlove <[email protected]> | 2019-01-19 13:06:40 -0700 |
|---|---|---|
| committer | Adelyn Breedlove <[email protected]> | 2019-01-19 13:06:40 -0700 |
| commit | 721bbc88c75eea240607054f2ec5a371f4d60e08 (patch) | |
| tree | 40af2abb5f6179194c0580defee32215245d04ef /lib/http.ml | |
| parent | Add docs to event dispatch (diff) | |
| download | disml-721bbc88c75eea240607054f2ec5a371f4d60e08.tar.xz disml-721bbc88c75eea240607054f2ec5a371f4d60e08.zip | |
Some changes for doc readability
Diffstat (limited to 'lib/http.ml')
| -rw-r--r-- | lib/http.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.ml b/lib/http.ml index 5f8e4e6..77fc9a8 100644 --- a/lib/http.ml +++ b/lib/http.ml @@ -22,7 +22,7 @@ module Base = struct let h = Header.init () in Header.add_list h [ "User-Agent", "Dis.ml v0.1.0"; - "Authorization", ("Bot " ^ !Config.token); + "Authorization", ("Bot " ^ !Client_options.token); "Content-Type", "application/json"; ] |