Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

docs(guide/Expressions): some punctuations are missing #9738

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/content/guide/expression.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,9 @@ digest cycle as long as that value is not undefined. If the value of the express
within the digest loop and later, within the same digest loop, it is set to undefined,
then the expression is not fulfilled and will remain watched.

1. Given an expression that starts with `::` when a digest loop is entered and expression
is dirty-checked store the value as V
2. If V is not undefined mark the result of the expression as stable and schedule a task
1. Given an expression that starts with `::`, when a digest loop is entered and expression
is dirty-checked, store the value as V
2. If V is not undefined, mark the result of the expression as stable and schedule a task
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think what this really needs is a proper rewrite --- these are long run-on sentences and it would be better to just redo them and write it better.

But, it's good enough to land. Will check-in

to deregister the watch for this expression when we exit the digest loop
3. Process the digest loop as normal
4. When digest loop is done and all the values have settled process the queue of watch
Expand Down