Fix timout->timeout typo (#1062)

This fixes an issue where the longest timeout wasn't actually being used. 

I haven't observed this actual problem, but just noticed that timout was an unused variable in the code, and it seems highly likely the intention was to have `timeout` here instead.
diff --git a/private/extensions/maven.bzl b/private/extensions/maven.bzl
index 522566e..5ac5254 100644
--- a/private/extensions/maven.bzl
+++ b/private/extensions/maven.bzl
@@ -322,7 +322,7 @@
             # Get the longest timeout
             timeout = repo.get("resolve_timeout", install.resolve_timeout)
             if install.resolve_timeout > timeout:
-                timout = install.resolve_timeout
+                timeout = install.resolve_timeout
             repo["resolve_timeout"] = timeout
 
             if mod.is_root: