From b92ef72c8c4e4e1910cfc78ff15c488b69860cc5 Mon Sep 17 00:00:00 2001 From: Sam Tobin-Hochstadt Date: Thu, 18 Feb 2016 10:49:18 -0500 Subject: [PATCH] fix typo --- racket/collects/net/url-string.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/collects/net/url-string.rkt b/racket/collects/net/url-string.rkt index dfef9ac1fe..0e182aa0ad 100644 --- a/racket/collects/net/url-string.rkt +++ b/racket/collects/net/url-string.rkt @@ -353,7 +353,7 @@ (not (equal? (url-host url) "")) (pair? strs)) (if (equal? (car strs) "") - (error 'file://->path "rmpty drive element: ~e" url) + (error 'file://->path "empty drive element: ~e" url) (apply build-path (string->path/win (string-append "\\\\" (url-host url) "\\" (car strs) "\\"))