diff --git a/docs/contribute/style-guide.md b/docs/contribute/style-guide.md
index 6bb1aa5837..d44cab2ea4 100644
--- a/docs/contribute/style-guide.md
+++ b/docs/contribute/style-guide.md
@@ -17,7 +17,7 @@ docs, follow the instructions on
## Documentation formatting standards
-### Use Camel Case for API objects
+### Use camel case for API objects
When you refer to an API object, use the same uppercase and lowercase letters
that are used in the actual object name. Typically, the names of API
@@ -75,7 +75,7 @@ represents.
Open the /_data/concepts.yaml file. | Open the /_data/concepts.yaml file. |
-## Code snippet formatting
+## Inline code formatting
### Use code style for inline code and commands
@@ -84,10 +84,31 @@ document, use the backtick (`).
Do | Don't |
- Set the value of the replicas field in the configuration file. | Set the value of the "replicas" field in the configuration file. |
The kubectl run command creates a Deployment. | The "kubectl run" command creates a Deployment. |
+ For declarative management, use kubectl apply . | For declarative management, use "kubectl apply". |
+### Use code style for object field names
+
+
+ Do | Don't |
+ Set the value of the replicas field in the configuration file. | Set the value of the "replicas" field in the configuration file. |
+ The value of the exec field is an ExecAction object. | The value of the "exec" field is an ExecAction object. |
+
+
+### Use normal style for string and integer field values
+
+For field values of type string or integer, use normal style without quotation marks.
+
+
+ Do | Don't |
+ Set the value of imagePullPolicy to Always. | Set the value of imagePullPolicy to "Always". |
+ Set the value of image to nginx:1.8. | Set the value of image to nginx:1.8 . |
+ Set the value of the replicas field to 2. | Set the value of the replicas field to 2 . |
+
+
+## Code snippet formatting
+
### Don't include the command prompt