hmil / RosHTTP

Unified Scala.js + Scala HTTP client API
MIT License
126 stars 24 forks source link

Huston, we got a spelling problem #73

Closed sguzman closed 6 years ago

sguzman commented 6 years ago

In the README example code under basic usage:

import fr.hmil.roshttp.HttpRequest
import monix.execution.Scheduler.Implicits.global
import scala.util.{Failure, Success}
import fr.hmil.roshttp.response.SimpleHttpResponse

// Runs consistently on the jvm, in node.js and in the browser!
val request = HttpRequest("https://schema.org/WebPage")

request.send().onComplete({
    case res:Success[SimpleHttpResponse] => println(res.get.body)
    case e: Failure[SimpleHttpResponse] => println("Huston, we got a problem!")
  })

Houston is misspelled as "Huston."

sguzman commented 6 years ago

Obviously, this issue is low priority. Although, I'm not sure how to mark it as such.

hmil commented 6 years ago

Done