The logic of this code is questionable, but it has worked for a while and the behavior seem to have changed in the last couple weeks: ```ruby puts URI.join("http://example.com/", "//", "path") ``` 3.2 and older: ``` http://example.com/path ``` 3.3.0-dev: ``` http:///path ``` I'll try to figure out what caused this and provide a fix.