Skylark -> Starlark: mass comment change

PiperOrigin-RevId: 306247151
diff --git a/src/main/java/com/google/devtools/build/lib/packages/AspectClass.java b/src/main/java/com/google/devtools/build/lib/packages/AspectClass.java
index e84b66d..a291574 100644
--- a/src/main/java/com/google/devtools/build/lib/packages/AspectClass.java
+++ b/src/main/java/com/google/devtools/build/lib/packages/AspectClass.java
@@ -64,8 +64,8 @@
  *
  * <ul>
  *   <li>{@link AspectClass} is a moniker for "user" definition of the aspect, be it a native aspect
- *       or a Skylark aspect. It contains either a reference to the native class implementing the
- *       aspect or the location of the Skylark definition of the aspect in the source tree, i.e.
+ *       or a Starlark aspect. It contains either a reference to the native class implementing the
+ *       aspect or the location of the Starlark definition of the aspect in the source tree, i.e.
  *       label of .bzl file + symbol name.
  *   <li>{@link AspectParameters} is a (key,value) pair list that can be used to parameterize aspect
  *       classes
@@ -74,8 +74,8 @@
  *   <li>{@link AspectDefinition} is a class encapsulating the aspect definition (what attributes
  *       aspoect has, and along which dependencies does it propagate.
  *   <li>{@link Aspect} is a fully instantiated instance of an Aspect after it is loaded. Getting an
- *       {@code Aspect} from {@code AspectDescriptor} for Skylark aspects requires adding a Skyframe
- *       dependency.
+ *       {@code Aspect} from {@code AspectDescriptor} for Starlark aspects requires adding a
+ *       Skyframe dependency.
  *   <li>{@link com.google.devtools.build.lib.analysis.ConfiguredAspect} represents a result of
  *       application of an {@link Aspect} to a given {@link
  *       com.google.devtools.build.lib.analysis.ConfiguredTarget}.