Skip to content

Commit b7bc68a

Browse files
committed
Formatting
1 parent c894a1c commit b7bc68a

File tree

1 file changed

+2
-2
lines changed
  • module7-cloud-computing/r4.1-cloud-functions

1 file changed

+2
-2
lines changed

module7-cloud-computing/r4.1-cloud-functions/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The objectives of this lesson are:
99

1010
## Introduction to Cloud Functions
1111

12-
Cloud Functions are an easy way to run your code in the cloud. With Cloud Functions, there are no servers to provision, manage, patch, or update. Functions automatically scale and are highly available and fault-tolerant.Cloud Functions are great for building serverless backends, doing real-time data processing, and creating intelligent apps.
12+
Cloud Functions are an easy way to run your code in the cloud. With Cloud Functions, there are no servers to provision, manage, patch, or update. Functions automatically scale and are highly available and fault-tolerant. Cloud Functions are great for building serverless backends, doing real-time data processing, and creating intelligent apps.
1313

1414
With Cloud Functions you write simple, single-purpose functions that are attached to events emitted from your cloud infrastructure and services. Your Cloud Function is triggered when an event being watched is fired. Your code executes in a fully managed environment. There is no need to provision any infrastructure or worry about managing any servers.
1515

@@ -21,7 +21,7 @@ Cloud Functions provides a connective layer of logic that lets you write code to
2121

2222
## Events and Triggers
2323

24-
Cloud events are things that happen in your cloud environment.These might be things like changes to data in a database, files added to a storage system, or a new virtual machine instance being created.
24+
Cloud events are things that happen in your cloud environment. These might be things like changes to data in a database, files added to a storage system, or a new virtual machine instance being created.
2525

2626
Events occur whether or not you choose to respond to them. You create a response to an event with a trigger. A trigger is a declaration that you are interested in a certain event or set of events. Binding a function to a trigger allows you to capture and act on events.
2727

0 commit comments

Comments
 (0)