Skip to content

Commit 0431697

Browse files
committed
more pr feedback
1 parent b9946ce commit 0431697

File tree

8 files changed

+8
-9
lines changed

8 files changed

+8
-9
lines changed

docs/content/guides/interactive-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ app.blockAction("topics-action") { req, ctx ->
158158

159159
## Under the Hood
160160

161-
If you hope to understand what is happening with the above code, reading the following (a bit pseudo) code may be helpful.
161+
If you hope to understand what is happening with the above code, reading the following (pseudo) code may be helpful.
162162

163163
```java
164164
import java.util.Map;

docs/content/guides/shortcuts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ app.messageShortcut("create-task-shortcut-callback-id") { req, ctx ->
128128

129129
## Under the hood
130130

131-
If you hope to understand what is happening with the above code, reading the following (a bit pseudo) code may be helpful.
131+
If you hope to understand what is happening with the above code, reading the following (pseudo) code may be helpful.
132132

133133
```java
134134
import java.util.Map;

docs/content/guides/slash-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ To learn how to build [Block Kit](https://docs.slack.dev/block-kit/) messages wi
9191

9292
## Under the hood
9393

94-
If you hope to understand what is happening with the above code, reading the following (a bit pseudo) code may be helpful.
94+
If you hope to understand what is happening with the above code, reading the following (pseudo) code may be helpful.
9595

9696
```java
9797
import java.util.Map;

docs/content/guides/status-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class Note {
3939
---
4040
## Call current status API in Java
4141

42-
As with other API clients, you can call `Slack`'s method `status()` to create an API client and then call `current()` to perform an HTTP request.
42+
As with other API clients, you can call the Slack `status()` method to create an API client and then call `current()` to perform an HTTP request.
4343

4444
```java
4545
import com.slack.api.Slack;

docs/content/guides/supported-web-frameworks.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ Below are some minimum working examples for the following popular frameworks.
2323

2424
[Spring Boot](https://spring.io/guides/gs/spring-boot/) is the most popular web framework in Java. Bolt properly works with Spring Boot 2.2 or newer versions. Enabling `SlackAppServlet` in your Spring Boot application is the easiest way to run Bolt apps with the framework.
2525

26-
When you add Spring Boot extensions such as Spring Security, the app may not work well with Bolt.
27-
In that case, consider splitting the app into a few and make the Bolt app as simple as possible.
26+
When you add Spring Boot extensions such as Spring Security, the app may not work well with Bolt. In that case, consider splitting the app into a few and make the Bolt app as simple as possible.
2827

2928
Let's look at a tiny Gradle project.
3029

docs/content/guides/web-api-client-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ In summary, the things you've done here are:
176176
---
177177
## Build from source
178178

179-
You may want to build the latest revision on your own. In the case of building from source, exeute the following commands in your terminal.
179+
You may want to build the latest revision on your own. In the case of building from source, execute the following commands in your terminal.
180180

181181
```bash
182182
git clone [email protected]:slackapi/java-slack-sdk.git

docs/content/guides/web-api-for-admins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ lang: en
44

55
# Web API for Org Admins
66

7-
The method names of a portion of [API Methods](https://docs.slack.dev/reference/methods) start with `admin.`. These APIs are not available for all developers. They are intended to be used by [Enterprise Grid](https://docs.slack.dev/enterprise-grid/) organization administrators.
7+
The method names of a portion of [API methods](https://docs.slack.dev/reference/methods) start with `admin.`. These APIs are not available for all developers. They are intended to be used by [Enterprise Grid](https://docs.slack.dev/enterprise-grid/) organization administrators.
88

99
---
1010
## Call the Web API for org admins

docs/content/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Java Slack SDK supports the Slack platform in a Java idiomatic way. Develope
55

66
Within these docs, there are two different modules:
77

8-
* [Bolt for Java Guides](/guides/getting-started-with-bolt), which is a framework with a simple API that makes it easy to write Slack apps in Java.
8+
* [Bolt for Java Guides](/guides/getting-started-with-bolt), which is a framework with a simplified API that helps write Slack apps in Java.
99
* [Java SDK Guides](/guides/web-api-basics), for when you need a more customized approach to building a Slack app in Java using the Slack API client.
1010

1111
## Requirements

0 commit comments

Comments
 (0)