From 8e1720c8a0bf12628c6755e57e6ef8a64cdfaba1 Mon Sep 17 00:00:00 2001 From: JJ Geewax Date: Fri, 15 Jul 2016 06:13:07 -0400 Subject: [PATCH] Fix whitespace issues with the code snippets. pre and code blocks are about whitespace, so indentation here matters. --- 1.0.0-beta01/index.html | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/1.0.0-beta01/index.html b/1.0.0-beta01/index.html index 897793b0c70d..f078e98d210b 100644 --- a/1.0.0-beta01/index.html +++ b/1.0.0-beta01/index.html @@ -66,14 +66,12 @@

google-cloud

Add NuGet pre-release packages to your project:

-
-Google.Bigquery.V2
+                        
Google.Bigquery.V2
 Google.Datastore.V1Beta3
 Google.Logging.Log4Net
 Google.Logging.V2
 Google.Pubsub.V1
-Google.Storage.V1
-                        
+Google.Storage.V1
@@ -133,10 +131,11 @@

What are they?

Example: Retrieving Datastore Entities

-
-                  
-using Google.Datastore.V1Beta3;
+                
+
using Google.Datastore.V1Beta3;
+
 ...
+
 DatastoreDb db = DatastoreDb.Create("PROJECT_ID");
 Query query = new Query("Book")
 {
@@ -148,9 +147,7 @@ 

Example: Retrieving Datastore Entities

DateTime published = (DateTime) entity["published"]; Console.WriteLine("{0} was published in {1}", title, published); -} -
-
+}