{@code Metric} adds a layer of service-related functionality over {@link MetricInfo}. Objects
diff --git a/gcloud-java-logging/src/main/java/com/google/cloud/logging/MetricInfo.java b/gcloud-java-logging/src/main/java/com/google/cloud/logging/MetricInfo.java
index e4f1e97cfded..cd0cf58f4d6b 100644
--- a/gcloud-java-logging/src/main/java/com/google/cloud/logging/MetricInfo.java
+++ b/gcloud-java-logging/src/main/java/com/google/cloud/logging/MetricInfo.java
@@ -25,7 +25,7 @@
import java.util.Objects;
/**
- * Google Cloud Logging metrics describe logs-based metric. The value of the metric is the number of
+ * Stackdriver Logging metrics describe logs-based metric. The value of the metric is the number of
* log entries that match a logs filter (see {@link #filter()}).
*
* @see Logs-based Metrics
diff --git a/gcloud-java-logging/src/main/java/com/google/cloud/logging/Sink.java b/gcloud-java-logging/src/main/java/com/google/cloud/logging/Sink.java
index 42f531795b82..782f0d2a56b8 100644
--- a/gcloud-java-logging/src/main/java/com/google/cloud/logging/Sink.java
+++ b/gcloud-java-logging/src/main/java/com/google/cloud/logging/Sink.java
@@ -27,10 +27,9 @@
import java.util.concurrent.Future;
/**
- * Google Cloud Logging sinks can be used to control the export of your logs. Each sink specifies
- * the export of a set of log entries to a certain destination. A sink consists of a name, unique to
- * the project, a filter for choosing the log entries to export and a destination for the log
- * entries.
+ * Stackdriver Logging sinks can be used to control the export of your logs. Each sink specifies the
+ * export of a set of log entries to a certain destination. A sink consists of a name, unique to the
+ * project, a filter for choosing the log entries to export and a destination for the log entries.
*
* Sink destination can either be a Google Cloud Storage bucket (see
* {@link SinkInfo.Destination.BucketDestination}, a Google Cloud BigQuery dataset (see
diff --git a/gcloud-java-logging/src/main/java/com/google/cloud/logging/SinkInfo.java b/gcloud-java-logging/src/main/java/com/google/cloud/logging/SinkInfo.java
index 669ba9f58c51..c2669ac07bae 100644
--- a/gcloud-java-logging/src/main/java/com/google/cloud/logging/SinkInfo.java
+++ b/gcloud-java-logging/src/main/java/com/google/cloud/logging/SinkInfo.java
@@ -27,9 +27,9 @@
import java.util.regex.Pattern;
/**
- * Google Cloud Logging sinks can be used to control the export of your logs. Each sink specifies
- * the export of a set of log entries to a certain destination. A sink consists of a name, unique to
- * the project, a filter for choosing the log entries to export and a destination for the log
+ * Stackdriver Logging sinks can be used to control the export of your logs. Each sink specifies the
+ * export of a set of log entries to a certain destination. A sink consists of a name, unique to the
+ * project, a filter for choosing the log entries to export and a destination for the log
* entries.
*
* Sink destination can either be a Google Cloud Storage bucket (see
@@ -56,7 +56,7 @@ public abstract static class Destination implements Serializable {
private final Type type;
/**
- * Type of destination for Google Cloud Logging sink.
+ * Type of destination for Stackdriver Logging sink.
*/
public enum Type {
/**
@@ -375,8 +375,8 @@ static