From f4e56b76f264d12e15db8de43df72693c014ed99 Mon Sep 17 00:00:00 2001 From: david-perez Date: Mon, 4 Oct 2021 13:31:17 +0200 Subject: [PATCH 1/2] Fix typo in `build-config.rst` --- docs/source/1.0/guides/building-models/build-config.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/1.0/guides/building-models/build-config.rst b/docs/source/1.0/guides/building-models/build-config.rst index 4e6605ea24d..06604faf84b 100644 --- a/docs/source/1.0/guides/building-models/build-config.rst +++ b/docs/source/1.0/guides/building-models/build-config.rst @@ -147,7 +147,7 @@ A projection accepts the following configuration: - Defines the plugins to apply to the model when building this projection. Plugins are a mapping of plugin names to an arbitrary plugin configuration object. smithy-build will attempt to resolve - plugin names using `Java SPI`_ to locate and instance of ``software.amazon.smithy.build.SmithyBuildPlugin`` + plugin names using `Java SPI`_ to locate an instance of ``software.amazon.smithy.build.SmithyBuildPlugin`` that returns a matching name when calling ``getName``. smithy-build will emit a warning when a plugin cannot be resolved. From 544e16ffb352c834a2617d9316068fc2bbcd1415 Mon Sep 17 00:00:00 2001 From: david-perez Date: Mon, 4 Oct 2021 13:35:30 +0200 Subject: [PATCH 2/2] Add missing `put` lifecycle operation in quickstart --- docs/source/quickstart.rst | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/source/quickstart.rst b/docs/source/quickstart.rst index d735b04aed1..dfee53d22c7 100644 --- a/docs/source/quickstart.rst +++ b/docs/source/quickstart.rst @@ -295,11 +295,12 @@ resource. Defining operations =================== -The ``create``, ``read``, ``update``, ``delete``, and ``list`` properties of a -resource are used to define the :ref:`lifecycle operations ` -of a resource. Lifecycle operations are the canonical methods used to read and -transition the state of a resource using well-defined semantics. Defining -lifecycle operations helps automated tooling reason about your API. +The ``put``, ``create``, ``read``, ``update``, ``delete``, and ``list`` +properties of a resource are used to define the :ref:`lifecycle operations +` of a resource. Lifecycle operations are the canonical +methods used to read and transition the state of a resource using well-defined +semantics. Defining lifecycle operations helps automated tooling reason about +your API. Let's define the operation used to "read" a ``City``.