Skip to content

Commit e36bb30

Browse files
Apply suggestions from code review
Co-authored-by: pinkeshmars <[email protected]>
1 parent 744e2b6 commit e36bb30

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/ff-concepts/adding-customization/cloud-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ sidebar_position: 6
1010
We allow you to write and deploy Firebase Cloud Functions directly within the platform. With an integrated code editor, writing JavaScript cloud functions is quick and user-friendly. Each function has customizable boilerplate settings, including pre-configured essentials like memory, region, and timeout.
1111

1212
:::note
13-
You can find some interesting use cases [here](https://firebase.google.com/docs/functions/use-cases).
13+
You can find some interesting use cases [*here*](https://firebase.google.com/docs/functions/use-cases).
1414
:::
1515

1616
## Adding Cloud Functions
@@ -119,7 +119,7 @@ For a list, the function should return:
119119
```
120120

121121
#### To deploy
122-
1. Click the `[**</>**]` icon to view the boilerplate code; a popup will open with the updated
122+
1. Click the `[</>]` icon to view the boilerplate code; a popup will open with the updated
123123
code, and then click **`</> Copy to Editor`**. **Tip**: To see if you are able to deploy the cloud function (before adding your own code), proceed directly with steps 8 and 9.
124124
2. Inside the code editor, add the cloud function code. **Tip**: You can copy the boilerplate code
125125
to [ChatGPT](https://chat.openai.com/) and ask it to write the desired code based on that.

docs/ff-concepts/adding-customization/custom-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ correctness of your custom code. It automatically checks your Dart code for erro
9494
providing real-time feedback as you write.
9595
![code-analyzer.png](imgs%2Fcode-analyzer.png)
9696
When there is a compilation error, the code analyzer will stop running and display the errors caught
97-
by the compiler. Once fixed, save the code and rerun the Compile Code button. The code analyzer
97+
by the compiler. Once fixed, save the code and rerun using the Compile Code button. The code analyzer
9898
should then be reconnected. You can also manually reconnect it if needed.
9999

100100
### Custom Code Automatic Imports
@@ -263,7 +263,7 @@ the **Copy to Clipboard** icon.
263263
<p></p>
264264

265265
:::warning
266-
The current dependency might depend on other dependencies to work.So make sure you also copy the
266+
The current dependency might depend on other dependencies to work. So make sure you also copy the
267267
name and version of all the additional dependencies to specify in the code editor.
268268
:::
269269

docs/ff-concepts/adding-customization/custom-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_position: 5
44
---
55
# Custom Files
66

7-
We allow you to add a custom code directly into the `*main.dart*` file of your app. This means that you can easily implement specific functionalities and customize your app as per your requirements without downloading the entire project and manually modifying the file.
7+
We allow you to add a custom code directly into the `main.dart` file of your app. This means that you can easily implement specific functionalities and customize your app as per your requirements without downloading the entire project and manually modifying the file.
88

99
By default, the file you want to edit is in 'read-only' mode. However, using our editor, you can add a code snippet in the form of [custom actions](/customizing-your-app/custom-functions/custom-actions).
1010

0 commit comments

Comments
 (0)