Fix ReadOnlyScoped doc with_scopes (#219)

diff --git a/google/auth/credentials.py b/google/auth/credentials.py
index 1fb5dec..db2869c 100644
--- a/google/auth/credentials.py
+++ b/google/auth/credentials.py
@@ -173,7 +173,7 @@
 
         if credentials.requires_scopes:
             # Scoping is required.
-            credentials = credentials.create_scoped(['one', 'two'])
+            credentials = credentials.with_scopes(scopes=['one', 'two'])
 
     Credentials that require scopes must either be constructed with scopes::